1

我设置了我的 express 应用程序来监听我的沙盒应用程序的 Paypal webhook。然后我尝试通过verify-webhook-signature API 端点来验证数据的完整性。我为此使用了请求模块。但我得到的只是一个415 Unsupported Media Type状态代码和一个空的正文。这是我的代码:

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)' 做到了。

4

1 回答 1

0

你为什么要发回表格帖子?不要张贴表格。发回原始数据。

于 2020-05-25T21:58:31.870 回答