PayPal-node-SDKを使用して Paypal の API にリクエストを送信しようとしています
exports.requestPayment = functions.https.onRequest((req, res) => {
return new Promise(function (fullfilled, rejected) {
paypal.payment.create(create_payment_json, {}, function (error, payment) {
if (error) {
rejected(error);
} else {
console.log("Create Payment Response");
console.log(payment);
res.status(200).send(JSON.stringify({
paymentID: payment.id
})).end();
fullfilled(payment);
}
});
});
});
しかし、私は常にエラーが発生しています:
Error: getaddrinfo ENOTFOUND api.sandbox.paypal.com api.sandbox.paypal.com:443
at errnoException (dns.js:28:10)
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:76:26)
私が試したこと:
- まったく別のホストにリクエストを送信しますが、それでも
ENOTFOUND
- リクエストをラップする
cors(req,res, ()=>{...})
https://
ホストの先頭に追加
何が問題ですか?