0

我正在使用 PayPal Sandbox 玩一些电子商务的东西。到目前为止,这是应用程序的流程:

  • 用户登录,服务器将 user_id 存储在数据库的会话中。用户登录后可以单击立即购买按钮。将他们带到贝宝,他们登录并付款,IPN 收到通知罚款:)

我现在唯一想做的就是扩展它,创建远离接收 users_id 的 IPN,这样我就可以在他们的数据库条目上设置一个标志。这可以在 PayPal 中完成吗?

我已经尝试了以下视图:

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
  <input type="hidden" name="cmd" value="_s-xclick">
  <input type="hidden" name="hosted_button_id" value="--ID-FROM-PAYPAL--">
  <input type="hidden" name="user_id" value="<?php echo $user_id;?>">
  <input type="image" src="https://www.sandbox.paypal.com/en_US/i/btn/btn_buynowCC_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>

谢谢您的帮助 :)

4

1 回答 1

2
<input type="hidden" name="custom" id="custom" value="<?php echo $user_id;?>"/>

您的 IPN 将收到$_POST['custom']变量中的用户 ID。

如果您想将多个值传递给 Paypal 并返回给您的 IPN:

    <script type="text/javascript">
          // using prototype
      function checkCustom(){
        var custom1 = $F('custom1');
        var custom2 = $F('custom2');
        $('custom').value = '{"userID":"'+ custom1 +'","publicDonation":"'+ custom2 +'"}';

      }
    </script>
<input type="hidden" name="custom1" id="custom1" value="<?php echo $user_id;?>"/>
<input type="hidden" name="custom2" id="custom2" value="<?php echo $user_email;?>"/>

欲了解更多信息,请查看贝宝 IPN:

风俗

由您(商家)传递的自定义值。这些是永远不会呈现给您的客户的传递变量长度:255 个字符

https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_IPNandPDTVariables#id091EAB0105Z

于 2012-09-11T13:10:06.153 回答