0

我想知道 PayPal Developer 提供的 IPN 模拟器是否允许使用 option_selection 值,因为我在任何地方都找不到它;我记得前段时间看过,但突然不见了。如果根本没有可能使用它,我可以使用它的替代品吗?谢谢。

4

1 回答 1

0

目前没有选项可以通过 IPN 模拟器传递选项选择变量。您可以在您的测试沙盒帐户上设置 IPN,然后在您传递这些变量的地方进行测试付款,否则您可以创建自己的 IPN 测试工具。类似于以下示例。

<form target="_new" method="post" action="https://www.YourDomain.com/Path/IPNhandler.php">
<input type="hidden"  name="SomePayPalVar" value="SomeValue1"/>
<input type="hidden"  name="SomeOtherPPVar" value="SomeValue2"/>

Than etc for all  other variables you want to test with.

</br>
<input  type="submit"/>
</form>
于 2013-05-02T20:38:31.590 回答