我正在尝试在旧的经典 asp 网站上安装 PayPal,但我在使用沙盒进行测试时遇到问题。
我可以进行被接受的付款,但我在我的 notify.asp 上看不到任何东西,它应该告诉我销售是否可以。我想知道我是否在此页面上使用好地址进行测试,我的代码知道 PayPal 的答案状态是什么:
' 支付宝验证
set objHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
if err.number <> 0 then set objHttp = Server.CreateObject("Microsoft.XMLHTTP")
str = Request.Form & "&cmd=_notify-validate"
objHttp.open "POST", "https://www.sandbox.paypal.com/cgi-bin/webscr", false
objHttp.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
objHttp.Send str
if objHttp.status <> 200 then
set objHttp = nothing
Response.Redirect "error.asp"
end if
ret = objHttp.responseText
set objHttp = nothing
' Check notification validation
if (ret = "VERIFIED") then
'payment is ok I write my database to confirm and send a email telling ok
else
'payment not ok I send a mail telling not ok
end if
我的错误在哪里,因为我没有收到任何邮件?