PayPal中Auth的含义(标准)订阅按钮返回URL?

时间:2012-12-31 13:46:58

标签: paypal paypal-ipn paypal-sandbox paypal-nvp

我的WordPress网站上有一个订阅按钮(使用PayPal付款标准版集成)。

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<input type="hidden" name="business" value="FRG9AB9A93MUN">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Premium Subscription">
<input type="hidden" name="item_number" value="321">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="rm" value="1">
<input type="hidden" name="return" value="http://example.com/success">
<input type="hidden" name="cancel_return" value="http://example.com/cancel">
<input type="hidden" name="src" value="1">
<input type="hidden" name="a3" value="299.00">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="M">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="bn" value="PP-SubscriptionsBF:btn_subscribeCC_LG.gif:NonHosted">
<input type="image" src="https://www.sandbox.paypal.com/en_US/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

我正在使用PayPal Sandbox测试功能。我使用WordPress PayPal框架插件(http://wordpress.org/extend/plugins/paypal-framework

我的问题

成功付款(订阅)后,买家会使用'auth'和'form_charset'返回返回网址 (http://example.com/success/?auth=AtKlH609fYvJhW2wmFr9iMmXboz9JEB64TJjNpLVH8d0OlBbnOpn-TeeCvZT6VWOcoo8XG4GD0AeftCUMdNWCAQ&form_charset=UTF-8

  

有人可以解释一下'auth'和'form_charset'的含义吗?我可以吗   用它来通过NVP获得有关交易的更多信息   API?那么我应该使用的NVP API方法是什么?

我可以在这些交易中正确接收IPN消息。

到目前为止我做了什么

我熟悉PayPal Express Checkout集成,捕获IPN消息并处理它们等等。

我已阅读PayPal指南中的NVP API方法,请求和响应。 https://cms.paypal.com/cms_content/CA/en_US/files/developer/PP_NVPAPI_DeveloperGuide.pdf

我也浏览了其他一些PayPal指南。

以下问题提到'加密变量名为auth'。但它对我没有帮助。 (Paypal sandbox return url

这个问题也涉及成功的回报。 (paypal redirect on successful checkout

1 个答案:

答案 0 :(得分:13)

将“rm”参数更改为“2”。这会导致POST到成功页面,包含所有事务变量。 Read more here