PayPal API 调用生成 415 状态



我设置了我的快速应用程序来监听我的沙盒应用程序的PayPal网络钩子。然后,我尝试通过验证网络钩子签名 API 端点验证数据的完整性。我为此使用请求模块。但我得到的只是一个 415 不支持的媒体类型状态代码和一个空的正文。这是我的代码:

app.post('/webhooks', function (req, res) {
if (req.body.event_type == 'PAYMENT.CAPTURE.COMPLETED') {
headers = {
'Accept' : 'application/json',
'Content-Type' : 'application/json',
'Authorization' : 'Bearer <AUTH_TOKEN>'
}
// Get the data for the API call of the webhook request
data = {
'transmission_id': req.headers['paypal-transmission-id'],
'transmission_time': req.headers['paypal-transmission-time'],
'cert_url': req.headers['paypal-cert-url'],
'auth_algo': req.headers['paypal-auth-algo'],
'transmission_sig': req.headers['paypal-transmission-sig'],
'webhook_id': '41G05244UL253035G',
'webhook_event' : req.body
}
request.post({
url: 'https://api.sandbox.paypal.com/v1/notifications/verify-webhook-signature',
headers: headers,
form: data,
}, (error, response, body) => {
if (error) {
console.error(error)
return
}
console.log(response.statusCode);
});
}
res.sendStatus(200);
});

这些数据有什么问题?

编辑:将"form: data"更改为"body: JSON.stringify(data("做到了。

为什么要发回表单帖子?不要发布表单。发回原始数据。

相关内容

  • 没有找到相关文章

最新更新