As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center提供指导。




已关闭8年。




我是Paypal与PHP集成的新手,我已经在Internet上搜索到了我无法在我的网站中实现的工具。

任何人都可以帮助逐步整合 Paypal (paypal)为我的网站,包括创建测试帐户。

提前致谢。

最佳答案

当我制作第一个Paypal脚本时,我做过的最有用的事情之一就是记录所有通过的信息。每当Paypal调用确认页面时,我都会将所有内容都转储到文本文件中。看到他们正在传递的内容并进行调试,这是非常有用的。 Paypal (Paypal)发送交易的POST。

$dumpfile = "=== post fields\n";
foreach($_POST as $k=>$v)
    $dumpfile .= "[$k] => $v\n";

$dumpfile .= "=== http request headers\n";
foreach(apache_request_headers() as $k=>$v)
    $dumpfile .= "[$k] => $v\n";

file_put_contents('pathToAWritableFile', $dumpfile);

我希望这可以减轻您的头痛。附带说明一下,如果在更新 Paypal 确认脚本后购买逻辑失败,我仍然将所有 Paypal 请求信息保存在数据库中,这节省了我几次。

Here's a tut on how to handle the callback from paypal.

关于php - Paypal与PHP的逐步集成,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12889094/

10-16 21:47