ノードを使用して REST Api を活用するために必要な PayPal アクセストークンを取得するにはどうすればよいですか?
質問する
6128 次
5 に答える
18
PayPal クライアント ID とクライアント シークレットを取得したら、以下を使用できます。
var request = require('request');
request.post({
uri: "https://api.sandbox.paypal.com/v1/oauth2/token",
headers: {
"Accept": "application/json",
"Accept-Language": "en_US",
"content-type": "application/x-www-form-urlencoded"
},
auth: {
'user': '---your cliend ID---',
'pass': '---your client secret---',
// 'sendImmediately': false
},
form: {
"grant_type": "client_credentials"
}
}, function(error, response, body) {
console.log(body);
});
成功した場合の応答は、次のようになります。
{
"scope":"https://api.paypal.com/v1/payments/.* ---and more URL callable with the access-token---",
"access_token":"---your access-token---",
"token_type":"Bearer",
"app_id":"APP-1234567890",
"expires_in":28800
}
于 2015-02-06T08:10:31.107 に答える
1
PayPal-Node-SDKを使用して、PayPal Rest API を呼び出すことができます。すべての承認と認証を処理します。
于 2015-02-06T22:36:16.817 に答える
0
スーパーエージェントを使用して access_token を取得する方法は次のとおりです
superagent.post('https://api.sandbox.paypal.com/v1/oauth2/token')
.set("Accept","application/json")
.set("Accept-Language","en_US")
.set("content-type","application/x-www-form-urlencoded")
.auth("Your Client Id","Your Secret")
.send({"grant_type": "client_credentials"})
.then((res) => console.log("response",res.body))
于 2017-04-20T14:52:09.567 に答える