java 实现 google checkout 序列号通知

发布于 2025-01-06 09:36:54 字数 547 浏览 1 评论 0原文

我想为 google checkout 实现序列号通知,因为我没有域名,但有静态 IP。我已经完成了 google checkout 的实现通知 XML API 以及我的操作据了解,有两种获取通知的方法:

1.) 在服务器上拥有 SSL 证书并在 google checkout 帐户中提供 URL,google 将在该 URL 上发送 XML 或 HTML 通知。

2.) Google 向我们的应用程序发送序列号通知,然后该序列号用于从 Google 获取其他通知。

现在我的问题是,在上面的情况 2 中,我们不需要 SSL 证书来获取序列号通知。但是,当应用程序使用序列号使用通知历史记录 API 获取其他通知时,此时服务器也不需要拥有 SSL 证书,或者需要拥有 SSL 证书才能获取其他通知。

另外,您能否提供一些链接或示例代码来在java中实现序列号通知。

I want to implement serial-number notification for google checkout as I do not have a domain name but a static ip. I have gone through Implementing the Notification XML API of google checkout and what I have understood is that there are two ways to get notifications:

1.) Have a SSL certificate on server and provide a URL in google checkout account and google will send either XML or HTML notifications on that URL.

2.) Google sends serial-number notification to our application and then that serial-number is used to get other notifications from google.

Now my question is that in case 2 above we do not need a SSL certificate to get serial-number notification. But when application uses serial-number to get other notifications using Notification History API then at that time also server do not need to have SSL certificate or will it be necessary to have a SSL certificateget to get other notifications.

Also can you please provide me some links or sample codes to implement serial number notification in java.

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

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

发布评论

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

评论(1

满栀 2025-01-13 09:36:54

正确 (1) 和 (2) - 这是您的 2 个选择。

如果您实施序列号通知,则您的处理程序不需要 SSL 证书。

(1) 和 (2) 之间的另一个区别是 Google 不会将基本身份验证标头发送到序列号通知中的处理程序(它们针对 XML 和名称/值发送基本身份验证标头)。

你问题的后半部分,JAVA代码示例不是我可以帮助你的(是.Net)。也许这个教程可以提供帮助 - 它还提到了他们的Java SDK

Correct on (1) and (2) - these are you 2 options.

You do not need SSL certificate for your handler if you implement Serial Number Notification.

Another difference between (1) and (2) is that Google will not send Basic Authentication headers to your handler in Serial Number Notification (they do for XML and name/value).

The latter part of your question, JAVA code sample isn't something I can help you with (am .Net). Perhaps this tutorial can help - it also mentions their Java SDK.

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