处理 Google Checkout 的退货

发布于 2024-10-11 14:56:09 字数 70 浏览 3 评论 0原文

我需要捕获服务器端用户付款的通知。我已经阅读了大部分文档,但没有成功,但我会再次阅读。有没有办法在完成订单后启用“返回站点”?

I need to capture server side a notification of a users payment. I've gone through a good majority of the documentation with no luck, but will go through it again. Is there a way to enable a "return to site" after they complete the order?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放血 2024-10-18 14:56:09

我搜索了 google checkout return url 并得到了 http://www.phpexpertsforum.com/return-url-in-google-checkout-after- payment-t561.html

veerlapallavi 写道...

有两种方法可以让您
可以提供返回URL。 1) 前往
您的 Google Checkout 帐户并打开
设置。在设置>>个人资料中
您可以找到一个名为“Public”的字段
商业网站:“提供您的回报
网址在那里。

2)第二种方法是,可以通过
Google Checkout 的价值
HTML 表单作为隐藏变量。

<代码><输入名称=“继续购物网址”
类型=“隐藏”
value="http://www.yousite.com/ payment_success.php">

或者

设置一个函数如下
SetContinueShoppingUrl("http://www.yousite.com/ payment_success.php");
函数 SetContinueShoppingUrl($url)
{ $this->continue_shopping_url =
$网址; }

有帮助。

看起来您可以配置 gcheckout 来向您发送 XML 通知,但我不知道如何将其与除匹配字段或其他内容之外的特定订单 ID 关联起来...

http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Notification_API.html#new_order_notifications

I searched google checkout return url and got http://www.phpexpertsforum.com/return-url-in-google-checkout-after-payment-t561.html

veerlapallavi wrote...

There are 2 methods through which you
can provide the return URL. 1) Go to
your Google checkout account and Open
the settings. In the settings>>Profile
you can find a field with name "Public
business website:" provide your return
URL there.

2) The second method is , You can pass
the value to Google Checkout with the
HTML form as a hidden variable.

<input name="continue_shopping_url"
type="hidden"
value="http://www.yousite.com/payment_success.php">

OR

Set a function as below
SetContinueShoppingUrl("http://www.yousite.com/payment_success.php");
function SetContinueShoppingUrl($url)
{ $this->continue_shopping_url =
$url; }

Hope that helps.

It looks like you can configure gcheckout to send you XML notifications, but I don't see how you can associate it with a particular order ID other than matching fields or something...

http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Notification_API.html#new_order_notifications

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文