我已经在 mysite 中集成了经常性的 paypal 付款方式。在这种方法中,我从返回 url 中获取用户名和密码。返回网址和贝宝确认页面上的用户名相同。但是返回 url 和 paypal 确认页面的密码不同。 我需要在确认页面和返回 url 中使用相同的密码。我的代码是 . .
<form action="paypal.php" method="post">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="alice@mystore.com">
<!-- Specify a Subscribe button. -->
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<!-- Identify the subscription. -->
<input type="hidden" name="item_name" value="Alice's Weekly Digest">
<input type="hidden" name="item_number" value="DIG Weekly">
<!-- Set the terms of the 1st trial period. -->
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="a1" value="0">
<input type="hidden" name="p1" value="14">
<input type="hidden" name="t1" value="D">
<!-- Set the terms of the 2nd trial period. -->
<input type="hidden" name="a2" value="5.00">
<input type="hidden" name="p2" value="3">
<input type="hidden" name="t2" value="W">
<!-- Set the terms of the regular subscription. -->
<input type="hidden" name="a3" value="49.99">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="Y">
<input type="hidden" name="src" value="1">
<input type="hidden" name="usr_manage" value="1">
<input type="hidden" name="return" value="http://server/projects/ananth/subscribebutton/thanks.php">
<input type="image" name="submit" border="0"
src="https://www.paypal.com/en_US/i/btn/btn_subscribe_LG.gif"
alt="PayPal - The safer, easier way to pay online">
<img alt="" border="0" width="1" height="1"
src="https://www.paypal.com/en_US/i/scr/pixel.gif" >
</form>
在这个paypal确认页面,用户名和密码如下
密码:deal2minor 用户名:pp-cheersidle
在这个Return url页面中,用户名和密码如下
密码:ojjxcsIatFLp2 用户名:pp-cheersidle
我需要在确认页面中使用相同的密码才能在返回 url 中返回。所以只有我可以将它存储在我的数据库中。
请给我提意见。. . .