0

我已经集成了 paypal payflow 链接 Api,如下所示。我正在尝试在订单中添加自定义字段 CustCode。我想在报告中显示该 CustCode 以及其他列。我已经添加了该字段,但它没有显示在贝宝管理器的报告中。有人可以告诉我我们是否可以在支付流链接集成中添加该字段。如果是,我下面的代码中的错误是什么。

   <html>
   <head>
   <title>my First Pay Pal</title>
   </head>
   <body>
      <form id="FOP" name="FOP" method="POST" action="https://payflowlink.paypal.com">
      <input type="hidden" id="LOGIN" name="LOGIN" value=''>
      <input type="hidden" id="PARTNER" name="PARTNER" value=''>
      <input type="hidden" name="DESCRIPTION" value="Order description here">
      <input type="text" name="AMOUNT" value="10.00">
      <input type="hidden" name="TYPE" value="S">
      <input type="hidden" name="MODE" value="Test">
      <input type="hidden" name="NAME" value="test2">
      <input type="hidden" name="ADDRESS" value="test2 address">
      <input type="hidden" name="CITY" value="test city">
      <input type="hidden" name="STATE" value="test2 state">
      <input type="hidden" name="ZIP" value="test2 zip">
      <input type="hidden" name="COUNTRY" value="test2 country">
      <input type="hidden" name="COMMENT1" value="test2 country">
      <input type="hidden" name="COMMENT2" value="test2 country">
      <input type="hidden" name="CUSTCODE" value="">
      <input type="submit" value="Click Here to Purchase">
      </form>

     </body>
4

1 回答 1

0

最好的办法是使用 COMMENT1 和 COMMENT2 进行报告。就“CUSTCODE”而言,它与处理器相关的 L2 和 L3 数据有关。我建议您使用变量“INVNUM”和“PONUM”进行报告。

于 2014-10-02T23:40:57.347 回答