0

我正在开发一个购物车,这是一个测试链接

https://www.2checkout.com/checkout/purchase?sid=my_sid&mode=2CO&li_0_type=product&li_0_price=1.00&li_0_quantity=1&li_0_name=Example+Product+Name&li_0_tangible=N&li_1_type=product&li_1_price=1.00&li_1_quantity=1&li_1_name=Example2+Product2+Name2&li_1_tangible=N&card_holder_name=name_here&street_address=full+adress+here&country=my_country&city=my_city&zip=00200&email=hjbhjb@ewfew.com&phone=011&state=my_state&x_receipt_link_url=http://www.my site.net/checkout.php

退货方式是直接退货,所以买家还在购买完成页面,参数发送到退货页面

现在的问题是:这是我页面的正确返回 url 吗?如我错了请纠正我

?sid=my_sid&mode=2CO&li_0_type=product&li_0_price=1.00&li_0_quantity=1&li_0_name=Example+Product+Name&li_0_tangible=N&li_1_type=product&li_1_price=1.00&li_1_quantity=1&li_1_name=Example2+Product2+Name2&li_1_tangible=N&card_holder_name=name_here&street_address=full+adress+here&country=my_country&city=my_city&zip=00200&email=hjbhjb@ewfew.com&phone=011&state=my_state&x_receipt_link_url=http://www.my site.net/checkout.php&hashSecretWord=my_secret_word&hashSid=hash_id&hashTotal=hash_total&hashOrder=hash_order
4

1 回答 1

1

参数不应附加到您的返回 URL。返回 URL(批准的 URL)应该只是应用程序中将处理返回参数的路由或脚本的绝对路径。直接返回回传方法通过将返回参数发布到您批准的 URL,同时 2Checkout 的服务器获取 HTML 并显示给买家。如果您在使用此退货方式时遇到问题,请确保您的页面输出至少 255 个字符,然后再重定向买家,否则退货流程将失败。我们也可以帮助您解决遇到的任何问题。只需联系 techsupport@2co.com 并提供您的帐号,我们将很乐意为您提供帮助。

于 2013-05-28T21:13:19.240 回答