Html 不使用IPN访问自定义变量

Html 不使用IPN访问自定义变量,html,paypal,Html,Paypal,是否可以在不使用IPN的情况下从中获取自定义变量的值 我有一个非常简单的项目,不需要自动付款验证或类似的东西,一切都是手动完成的。我只需要像一个付款页面的输入与付款 那么,是否可以从paypal或paypal付款收据的付款确认电子邮件中的自定义变量中获取信息 签出按钮示例: <form action="https://www.paypal.com/cgi-bin/webscr" method="post" id="paypal-form" target="_top"> <inp

是否可以在不使用IPN的情况下从中获取
自定义
变量的值

我有一个非常简单的项目,不需要自动付款验证或类似的东西,一切都是手动完成的。我只需要像一个付款页面的输入与付款

那么,是否可以从paypal或paypal付款收据的付款确认电子邮件中的
自定义变量中获取信息

签出按钮示例:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" id="paypal-form" target="_top">
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<input type="hidden" name="business" value="paypal@email.com">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Item Name">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="src" value="1">
<input type="hidden" name="a3" value="10.00">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="M">
<input type="hidden" name="custom" id="payment-custom" value="CUSTOM VALUE">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="bn" value="PP-SubscriptionsBF:btn_subscribeCC_LG.gif:NonHostedGuest">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>


因此,我想在不使用ipn脚本的情况下获得“自定义值”,这有可能吗?

将返回它

Andrew是正确的;假设自定义字段是机器可读/有用的,但不一定是可显示的/人用的(人们通常在自定义字段中放置ID甚至复合键)。因此,它不会出现在电子邮件中,但可以通过getTransactionDetails API(以及IPN或PDT)检索。它还会在事务流结束时返回到您的站点,这样您的web服务器就可以在那里捕获它并对其进行处理(包括将其通过电子邮件发送给您,或者将其放入您管理的某个履行队列中),如果有帮助的话。这不需要API集成。如果要在用户返回时处理网站中的自定义字段,请参阅中的“传递变量”部分。当然,如果您这样做,请确保您将PayPal按钮设置为返回用户,并注意如果他们的internet断开(或他们关闭浏览器或其他),他们可能会付费,然后不返回。很少见,但也可能发生。