|
List Info
Thread: Callback using HTML API?
|
|
| Callback using HTML API? |
  United States |
2007-07-22 22:49:03 |
I'm testing out using the HTML API with a custom built
shopping cart,
using the form with hidden inputs as described in:
http://code.google.com/apis/checkout
/developer/google_checkout_html_api.html
Everything works great, but is there some way that Google
Checkout can
notify my site after a user has fully checked out? I'd like
to empty
out the shopping cart and maybe display a message in it
letting the
user know their purchase went through.
Is there some sort of callback I can specify in the HTML
API?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integration googlegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: Callback using HTML API? |
  United States |
2007-07-23 09:37:38 |
You need to set the Callback url in the Merchant Center.
Then you will receive the callbacks.
Joe
On Jul 22, 11:49 pm, Zach <zcox... gmail.com> wrote:
> I'm testing out using the HTML API with a custom built
shopping cart,
> using the form with hidden inputs as described in:
>
> http://code.google.com/apis/checkout/dev
eloper/google_checkout_html_a...
>
> Everything works great, but is there some way that
Google Checkout can
> notify my site after a user has fully checked out? I'd
like to empty
> out the shopping cart and maybe display a message in it
letting the
> user know their purchase went through.
>
> Is there some sort of callback I can specify in the
HTML API?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integration googlegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: Callback using HTML API? |

|
2007-07-23 09:41:38 |
Awesome - thanks Joe! Is there a way to pass any parameter
in the
callback that would identify the purchase in some way?
On 7/23/07, joseph.feser <joseph.feser gmail.com> wrote:
>
> You need to set the Callback url in the Merchant
Center.
>
> Then you will receive the callbacks.
>
> Joe
>
> On Jul 22, 11:49 pm, Zach <zcox... gmail.com> wrote:
> > I'm testing out using the HTML API with a custom
built shopping cart,
> > using the form with hidden inputs as described
in:
> >
> > http://code.google.com/apis/checkout/dev
eloper/google_checkout_html_a...
> >
> > Everything works great, but is there some way that
Google Checkout can
> > notify my site after a user has fully checked out?
I'd like to empty
> > out the shopping cart and maybe display a message
in it letting the
> > user know their purchase went through.
> >
> > Is there some sort of callback I can specify in
the HTML API?
>
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integration googlegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: Callback using HTML API? |
  United States |
2007-07-23 11:18:19 |
I am having the same proble, I will try API callback URL. I
think all
I need to do is after passing the request to google,
redirect to the
callback URL and read the response...right?. What if there
are
multiple users paying at the same time? Does google passes
separate
response to the URL for each user processing at the time?
Thanks.
On Jul 23, 7:41 pm, "Zach Cox" <zcox... gmail.com> wrote:
> Awesome - thanks Joe! Is there a way to pass any
parameter in the
> callback that would identify the purchase in some way?
>
> On 7/23/07, joseph.feser <joseph.fe... gmail.com> wrote:
>
>
>
>
>
> > You need to set the Callback url in the Merchant
Center.
>
> > Then you will receive the callbacks.
>
> > Joe
>
> > On Jul 22, 11:49 pm, Zach <zcox... gmail.com> wrote:
> > > I'm testing out using the HTML API with a
custom built shopping cart,
> > > using the form with hidden inputs as
described in:
>
> > >http://code.google.com/apis/checkout/dev
eloper/google_checkout_html_a...
>
> > > Everything works great, but is there some way
that Google Checkout can
> > > notify my site after a user has fully checked
out? I'd like to empty
> > > out the shopping cart and maybe display a
message in it letting the
> > > user know their purchase went through.
>
> > > Is there some sort of callback I can specify
in the HTML API?- Hide quoted text -
>
> - Show quoted text -
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integration googlegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: Callback using HTML API? |

|
2007-07-23 11:43:52 |
|
Hi, the merchant callback URL should be a WebService
this means that no-human interaction will be done.
U "publish" that WS, and the GoogleCheckout Bot will go there with a specific URL. U should read that info and process the order.
no need to redirect or send any thing, just a HTTP 200 ok Status so the GC bot knows u have processed the request correctly.
hope this is understood.
more info read here
http://code.google.com/apis/checkout/developer/index.html#notification_api (NOTE: is for the XML api, but the concept is the same for HTML api)
ropu
On 7/23/07,
usamaalam < usamaalam gmail.com">usamaalam gmail.com> wrote:
I am having the same proble, I will try API callback URL. I think all I need to do is after passing the request to google, redirect to the callback URL and read the response...right?. What if there are multiple users paying at the same time? Does google passes separate
response to the URL for each user processing at the time?
Thanks.
On Jul 23, 7:41 pm, "Zach Cox" < zcox... gmail.com">zcox... gmail.com> wrote: > Awesome - thanks Joe! Is there a way to pass any parameter in the
> callback that would identify the purchase in some way? > > On 7/23/07, joseph.feser < joseph.fe... gmail.com">joseph.fe... gmail.com> wrote: > > > >
> > > You need to set the Callback url in the Merchant Center. > > > Then you will receive the callbacks. > > > Joe > > > On Jul 22, 11:49 pm, Zach < zcox... gmail.com">
zcox... gmail.com> wrote: > > > I'm testing out using the HTML API with a custom built shopping cart, > > > using the form with hidden inputs as described in: > > > >
http://code.google.com/apis/checkout/developer/google_checkout_html_a... > > > > Everything works great, but is there some way that Google Checkout can > > > notify my site after a user has fully checked out? I';d like to empty
> > > out the shopping cart and maybe display a message in it letting the > > > user know their purchase went through. > > > > Is there some sort of callback I can specify in the HTML API?- Hide quoted text -
> > - Show quoted text -
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "API Integration Basics" group. To post to this group, send email to google-checkout-api-integration googlegroups.com To unsubscribe from this group, send email to google-checkout-api-integration-unsubscribe googlegroups.com For more options, visit this group at http://groups.google.com/group/google-checkout-api-integration?hl=en -~----------~----~----~----~------~----~------~--~---
|
[1-5]
|
|