通过 Moneybookers 获取本地 URL 的状态
我使用 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上的订单状态呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.