来自定期PayPal付款的返回网址的密码与paypal确认页面中的密码不匹配

时间:2011-08-31 08:09:22

标签: paypal-subscriptions recurring

我已经在mysite中集成了定期付款方式。在这个方法中,我从返回URL获取用户名和密码。返回网址和PayPal确认页面上的用户名相同。 但是返回网址和PayPal确认页面的密码不同。 我需要在确认页面和返回网址中使用相同的密码。 我的代码是。 。

<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

在此返回网址页面中,用户名和密码如下

密码:ojjxcsIatFLp2 用户名:pp-cheersidle

我需要在确认页面中使用相同的密码才能在返回网址中返回。所以只有我可以将它存储在我的数据库中。

请告诉我。 。 。

0 个答案:

没有答案