通过 Moneybookers 获取本地 URL 的状态

发布于 2024-12-04 04:25:56 字数 332 浏览 0 评论 0 原文

我使用 Money Bookers 进行付款处理。

我是否可以像 paypal IPN 一样将订单状态获取到我的本地 URL。

我可以像下面这样设置状态 url:

<input type="hidden" name="status_url" value="<?php echo $cfg->webroot?>/index.php?control=add_fund&do=status">

但它仅响应实时 url,而不响应本地 URL。那么有没有办法获取本地URL上的订单状态呢?

I am using Money Bookers for the payment processing.

Is there any possibility that I can get the order status to my local URL same as paypal IPN.

I am able to set the status url like below :

<input type="hidden" name="status_url" value="<?php echo $cfg->webroot?>/index.php?control=add_fund&do=status">

But its responding only to live url but not for the local URL. So is there any way to get the order status on local URL?

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

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

发布评论

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

评论(1

零度℉ 2024-12-11 04:25:56

Moneybookers 只能向可公开访问的网站发送通知。因此,如果您希望向您的开发机器发送通知,您需要一个公共 IP,并且 Moneybookers 需要能够访问端口 80。

您可以通过执行 简单的在线端口扫描

要记住的一件事是,您发送的 status_url 将与该订阅绑定在一起,直到它结束,因此不要在生产中测试它。

Moneybookers can only send notifications to a publicly accessible site. So if you want notifications to your development machine, you need a public IP, and Moneybookers needs to able to access port 80.

You can check if your port 80 is accessible by doing a simple online port scan.

A thing to remember is that the status_url you send will be tied to that subscription until it ends, so don't test this in production.

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