|
I've reading the Google Checkout docs but I haven't found anything similar to PayPal IPN for Google Checkout.
Can anyone point me in the right direction to automatically process orders using Google Checkout?
Started by Alix Axel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Take a look at : http://code.google.com/apis/checkout/developer/Google_Checkout/samples....
Processing orders automatically
If you're using the Google Checkout API, you for more information.
From the Google Docs.
|
|
Is there any way to import data from Google Checkout into Quickbooks? (Or another accounting package)?
Started by steve on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use the Google Checkout API to suck data outYep - you can export....
Accounting packages):
Google Checkout - Reporting and reconciliation
QuickBooks - Tools for importing that could automatically push data into QuickBooks.
|
|
I'm working with a charity that takes on-line donations and they have recently been awarded a Google Adword Grant. I was excited to find the page about taking donations via google Checkout (Google Checkout for Non-Profits) and then disappointed to he
Started by WineGirlMagic on
, 19 posts
by 7 people.
Answer Snippets (Read the full thread at google):
Is their any updates on this? If I am a non profit in the UK can I use google checkout in anyway? Can I use UK charity and would like to be able to add Google Checkout for Non-Profits to handle donations google ....
|
Ask your Facebook Friends
|
Which payment gateway should I choose from among Authorize.net, PayPal & Google Checkout?
Is there anything wrong if I provide all ? I'm planning for express checkout methods in all the three services, the direct credit card accepting service.
Started by Aayush on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
They charge less of a fee (I'm assuming because they process everything themselves, and don't go through some third party to get to the credit... .
It's worth noting, from the research I've done, using PayPal is cheaper than credit card processing directly .
|
|
Hello there,
We rolled out paying plans on Montastic (website monitoring service) with Google Checkout. The plans are to be paid monthly but Google Checkout does not charge the credit card immediately even though we set the billing date to be immediate...
Started by supercobra on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you talked to Google's support department for this product?
Does it perhaps bill at the end.
|
|
Hi all,
If I would like to process payments directly without going through Google / Amazon / Paypal, how would I go about that? Is there a Java API or some reference implementation that shows how to do such a thing or is it really that large and complicated...
Started by Walter White on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Use a processor like Authorize....
You have two options:
Use a system like Google/Amazon/PayPal.
I have never used Google Checkout or PayPal APIYou'll need a provider no matter what.
Or storing any credit card information on your own.
|
|
Hi guys,
I am attempting to use google checkout to process a shopping cart created with Zmags.
With Zmags you can integrate a basket with your e commerce shopping cart, however I want to send it straight to google checkout.
Problem is the XML output from...
Started by Wes on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is there a way to print the XML that outputs is... .
Without having knowledge of the required Google Checkout XML schema, the classic way to transform will require some information about the required Google Checkout XML schema.
|
|
I'm trying to post form data to Google Checkout using the following code:
x = Net::HTTP.post_form(URI.parse('https://checkout.google.com/api/checkout/v2/checkoutForm/Merchant/[merchant_number_here]'), @params)
When I attempt to submit using this line,...
Started by Kevin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Require 'net/http' require 'net/https' url = URI.parse.
Method to debug the response returned by Google.
|
|
For Google Checkout merchants, nothing is changing right now. Merchants should continue to access their seller accounts at https://checkout.google.com/sell. Presently only buyer accounts can be accessed at https://wallet.google.com/manage and there
Started by shamor on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at google):
|
|
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...
Started by DavidGouge on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Not knowing anything about the Google Checkout API, are you sure you don't need the namespace on each of those elements?
XElement rootElement = new XElement(ns + "checkout-shopping-cart", new XElement(ns + "shopping-cart"), new XElement....
|