我使用nodejs和express。这是我在Paypal返回时运行的代码。我只收到来自Paypal的302错误。我看到一些使用ssl://而不是https://的示例,但nodejs大声说它不是https模块的有效协议。有没有人有PDT和IPN的工作nodejs脚本?
var purchaseID = req.query.tx;
var atoken = MYAuthToken;
var postDataArray = {'cmd':'_notify-synch','tx': purchaseID, 'at': atoken}
var postData = JSON.stringify(postDataArray);
console.log(postData);
var options = {
hostname: 'www.sandbox.paypal.com',
port: 443,
path: '/cgi-bin/webscr',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': postData.length
}
};
var req = https.request(options, function(res) {
console.log('STATUS: '+ res.statusCode);
console.log('HEADERS: '+ JSON.stringify(res.headers));
res.setEncoding('utf8');
res.on('data', function(chunk) {
console.log('BODY: '+chunk);
});
res.on('end', function() {
console.log('No more data in response.')
});
});
req.on('error', function(e) {
console.log('problem with request: '+e.message);
});
req.write(postData);
req.end();
});
此
答案 0 :(得分:0)
您缺少Accept: */*
标题。此外,JSON.stringify
不是application/x-www-form-urlencoded
。以下是一些基于以下内容构建的工作代码:
var request = require('request');
var endpoint = 'www.sandbox.paypal.com';
var options = {
form: {
cmd: '_notify-synch',
tx: tx,
at: auth
},
headers: {
Accept: '*/*'
}
};
request.post('https://' + endpoint + '/cgi-bin/webscr', options, function(e, r, body) {
return console.log(body);
});
答案 1 :(得分:-1)
尝试在没有JSON的情况下发帖
var postData =“cmd = _notify-synch,at =”+ at +“,tx =”+ tx;
当我遇到问题时,我编辑了几次。我是节点的新手,所以只是通过反复试验来破解解决方案。你的帖子让我走向了解决方案。所以这里是postData,适用于您的代码。很高兴看到FAIL和SUCCESS消息通过。注意..需要&的
var postData =“cmd = _notify-synch& at =”+ at +“& tx =”+ tx;