集成自动Paypal商店系统?

时间:2012-01-04 08:17:02

标签: php paypal

嘿伙计们为我的网站我想弄清楚如何制作一个自动化的PayPal商店,我的意思是,当他们通过PayPal通过点击我的网站上的paypal按钮购买会员资格时,它也会改变一个内部的值我的特定用户的数据库。

所以以时间轴方式:

  1. 用户点击购买按钮并购买商品。
  2. 付款完成后,重定向到我的php脚本,更新用户会员身份。
  3. 目前,我需要帮助的是如何在付款完成后自动重定向。我遵循了一些代码,但它仍然无效,这就是我正在使用的。

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> 
    
     <!-- Identify your business so that you can collect the payments. --> 
     <input type="hidden" name="business" value="MY EMAIL"> 
    
     <!-- Specify a Buy Now button. --> 
     <input type="hidden" name="cmd" value="_xclick"> 
    
     <!-- Specify details about the item that buyers will purchase. --> 
     <input type="hidden" name="return" value="MY URL TO REDIRECT TO">
     <input type="hidden" name="item_name" value="Sponsored (1 Month)"> 
     <input type="hidden" name="amount" value="0.01">  
     <input type="hidden" name="currency_code" value="NZD"> 
    
     <!-- Display the payment button. --> 
     <input type="image" name="submit" border="0" 
     src="https://www.paypal.com/en_US/i/btn/btn_buynow_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“付款完成”页面,但我希望它在付款完成时自动转到返回网址。

2 个答案:

答案 0 :(得分:1)

那不是paypal如何工作,你不能依赖访客返回,你使用paypal的IPN(即时付款通知)功能,阅读其文档如何工作。

Instant Payment Notification - PayPal

答案 1 :(得分:0)

您的返回网址是否真的是“我要重定向的网址”,还是“http://myURL.com/myPage.asp”?显然,第一个不起作用。