使用场外支付系统管理库存
我正在建立一个售票网站。我正在通过第三方支付处理器 google checkout 处理付款。目前我将 google checkout 的购买时间限制为 10 分钟。如果需要更长时间,门票将重新开放,其他用户可以购买门票。唯一的问题是 Google checkout 不知道计时器已过期。即使用户尝试购买的门票已被其他人购买,用户也能够完成购买。有什么办法可以阻止 google checkout 出售过多的门票吗?门票是通用的,所以如果我可以限制总共售出多少张,这也可以。如果这是不可能的,似乎是这种情况,有没有人解决这个问题并找到更好的解决方案?
I am building a site that sells tickets. I am processing payments through third party payment processors, google checkout. Currently I am limiting purchase time on google checkout to 10 min. If they take longer, the tickets reopen and other users are able to purchase the tickets. The only problem is that Google checkout doesn't know that the timer has expired. The user is able to complete their purchase even though the tickets they are trying to buy have already been bought by someone else. Is there any way to stop google checkout from selling too many tickets? The tickets are GA so if I could limit how many are sold total this would work also. If this is not possible, which seems to be the case, has anyone tackled this problem and found a better solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有多种选择来处理库存问题:
http://code.google.com/ apis/checkout/developer/Google_Checkout_Store_Gadget_How_To.html
http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Notification_API.html
http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Processing.html
You have several options to deal with inventory issues:
http://code.google.com/apis/checkout/developer/Google_Checkout_Store_Gadget_How_To.html
http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Notification_API.html
http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Processing.html