google-checkout

Google check out error

Hi I want to implement Google checkout in my PHP project (running on Apache). I put the callback URL in my merchant center account. My Checkout is in sandbox mode. When placing an order I get the following error message in my merchant center: We encountered an error trying to access your server at myurl.org -- the error we got is S...

how to use google check out

i want to integrate google check out in my website,,i m a bit confused in which option i should go with..there are four options to integrate with the website. 1.Email invoices 2.Buy Now buttons 3.Google Checkout shopping cart 4.Third-party shopping carts now in my website i calculate the total order and stores it in a variable. i want ...

Google Checkout HTTP Post with ASP.net

I have 2 pages I created in ASP.net(C#). The first one(called shoppingcart.asp) has a buy it now button. The second one(called processpay.asp) just waits for google checkout to send an HTTP request to it to process the payment. What I would like to do send a post statement to google checkout with a couple of variables that I want pass...

Google Checkout API callback URL issue

I am able to process orders no problem. However when I look in the integration console I see the following error: We encountered an error trying to access your server at https://[urlremoved]/registerpayment.aspx -- the error we got is Send failed with code: 401. Response body was: 401 - Unauthorized: Access is denied due to invalid...

Google Checkout Parse Private-merchant-Data C#

I am trying to figure out how to parse the private-merchant-data variable sent back by google checkout. I've tried the following but I get an error when google posts back to my page: privatedata = ThisItem.merchantprivateitemdata.Any[0].Value.ToString(); I only have one child node returned by google and that is <MERCHANT_DATA_HIDDE...

Google checkout customization

hi friends, I want to customize my google checkout pages in my website like this site i want to place my website logo in google checkout cart section for example like the below site http://www.bhphotovideo.com/ https://checkout.google.com/view/buy?o=shoppingcart&amp;shoppingcart=966330776082367 can any one tell how can i do this in ...

Google check out - sending email

hi I have a Php project. in this i am using google check out. I have created merchant account and implemented it. It's working well. But i also want to send cart information to another mail id. Is it possible ?? Please help me immediately.. ...

POSTing xml to Google Checkout

I'm experimenting with using Google Checkout and am having a problem posting to the checkout server. Here is my code: XNamespace ns = XNamespace.Get("http://checkout.google.com/schema/2"); XDocument cart = new XDocument(); XElement rootElement = new XElement(ns + "checkout-shopping-cart", new XElement("shopping-cart", new ...

Google Checkout. Show shipping rates before logging in possible?

I am trying to integrate google checkout with my current site. I am calculating the shipping on my end, before passing it to google checkout. The problem is, when a person click the "google checkout" button, it takes them to google checkout but it does not show the shipping. It actually states it will be calculated on next step. In t...

Magento : Converting currency before sending data to Google Checkout

I have a magento site with base currency in USD and Google Checkout in GBP. Google Checkout: The currency used in the cart must match the currency of the seller account. You supplied a cart with USD and the seller account is associated with GBP. Is there a way in magento to convert the amount to GBP before sending to Google...

HTTP Basic Authentication

http://checkout.google.com/support/sell/bin/answer.py?hl=en&amp;answer=70647 Only accept messages that are authenticated by HTTP Basic Authentication, using your Merchant ID and Merchant Key as the username and password. Any idea on how to set this up ? (HTTP Basic Authentication) ...

How do you assign a specific NAME to a tag when using master pages?

I am using Master Pages and I am truing to dynamically add hidden text boxes on the form with the NAMEs that Google Checkout expects. <input name="item_name_1" type="hidden" value="Widget #1"/> Using VB.NET, I execute the following code 'Name Dim hidName As New HtmlInputHidden hidName.ID = "item_name_" & count.ToString hidName.Valu...

Google Checkout suddendly returns: 'GCheckout.XmlSerializers' failed to load'

I am suddenly experiencing an intermittent error using the Google Checkout ASP.NET control "GCheckout." It is on the first line of code shown below: XmlSerializer Ser = new XmlSerializer(ObjectToSerialize.GetType()); //ObjectToSerialize is a CheckoutShoppingCart object What puzzles me is why it seemed to work all the time before an...

Flex: Security error trying to access Google Checkout

I'm trying to integrate a Flex app with Google Checkout and code that runs fine on my local machine is throwing a Security Error when I test on my site. Here's the error: Warning: Failed to load policy file from https://sandbox.google.com/crossdomain.xml *** Security Sandbox Violation *** Connection to https://sandbox.google.com/check...

Magento - Buy it now buttons and checkout process

Hey everyone! I was hoping to start using Magento for a very simple checkout landing page. I have a few questions regarding the capabilities of Magento: 1) I don't actually want to use the 'add to cart' button but rather a 'buy it now' button. So when a user clicks to purchase a product it automatically takes you to the checkout proc...

Using Google Checkout, can I add items to the cart with text links?

Demo here using buttons http://checkout.google.com/seller/gsc/v2/demo/index.html I want to use, if possible text links in place of input buttons. Thanks everyone! ...

How do I use Google Checkout with Google Product Item Feed

I have connected my Google Merchant Center account to my Google Checkout account, but how do I set Google Checkout as the primary method of payment for a Google Product Item Feed? At the moment I have <g:payment_accepted>Google Checkout</g:payment_accepted> <g:payment_notes>Google Checkout Accepted</g:payment_notes> But that doesn't ...

ASP.NET small online store, shopping cart

Currently I have a site that is using Google Checkout's mini cart system and I like it a lot, however, I'm wondering if there is a more professional way of doing it, while still keeping it simple. I've looked into an authorize.net account, but I need to find a way to handle the mini shopping cart before heading off to process the order....

Google checkout API - trial periods

I am using Google Checkout for recurring payments (beta feature i beleive) and I cannot find any information on what the XML I post to google should look like in order to implement a trial period. At the moment I have something like: <?xml version="1.0" encoding="utf-8"?> <checkout-shopping-cart xmlns="http://checkout.google.com/schema...

Google Checkout View Cart Button

I'm trying to add a view cart button to my website that is using google checkout, does anyone know a trick to do this? I think I may need to use a special div with a class to create a button that will display the cart when clicked, I'm lost. Thank you ...