我在自己购物车的最后阶段将paypal集成到我的网站中。 我现在只是在沙箱里练习。所以我在购物车页面中有一个表单,它将每个项目的价格发送到此地址的https://www.sandbox.paypal.com/cgi-bin/webscr
这样可以正常工作,因为在用户在paypal上输入付款详细信息后,它会返回带有交易ID的返回网址。现在我被困在我用我的身份令牌发回事务id的部分,因为它返回4020失败。
<form target="paypal" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="monk@gmail.com">
<input type="hidden" name="item_name_1" value="Electro">
<input type="hidden" name="amount_1" value="1.00">
<input type="hidden" name="item_number_1" value="1">
<input type="hidden" name="item_name_2" value="Dub">
<input type="hidden" name="amount_2" value="2.00">
<input type="hidden" name="item_number_2" value="2">
<input type="image" src="https://www.sandbox.paypal.com/en_US/i/btn/x-click-but6.gif" border="0" name="submit" alt="">
<img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
所以在我的回复网址中我有这个:
<?php
$transID = $_GET['tx'];
?>
<!DOCTYPE html>
<html lang="en">
<body>
<form target="paypal" method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr">
<input type="hidden" name="cmd" value="_notify-synch">
<input type="hidden" name="tx" id="tx" value="<?php echo $transID; ?>">
<input type="hidden" name="at" id="at" value="myIdentityNumber">
<input type="submit" value="PDT">
</form>
</body>
</html>
在我的返回网址中,“MyIdentityNumber”已替换为我的沙箱业务帐户中的标识令牌。我已经阅读了很多关于它的信息,但我找不到合适的信息。感谢mil提供任何建议。 萨拉
答案 0 :(得分:0)
我实际上错误地复制了我的身份令牌,遗漏了一个角色。哈哈。愚蠢的错误,但至少它现在的工作。感谢