Yelp fusion APIにアクセスしようとしています。しかし、私のOVH VPSに私はこのエラーを取得しています、Yelp Fusion:トークンを取得できません
const request = require('request');
// As you can see the common error of there being a whitespace
// in one of these is not the case here
const clientId = 'O<removed>w';
const clientSecret = 'm<removed>r';
const options = {
url: 'https://api.yelp.com/oauth2/token',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
json: {
'grant_type': 'client_credentials',
'client_id': clientId,
'client_secret': clientSecret
}
};
request(options, (err, res, body) => {
if(err) {
return console.log(err);
}
console.log(body);
});
私はこれと同じ呼び出しで正しい応答を取得していますAPIGeeを使用した:私はdocumentationを以下のこのコードに来ています(これはからのものであることに注意してください本文変数)
{ error:
{ code: 'VALIDATION_ERROR',
description: 'client_id or client_secret parameters not found. Make sure to provide client_id and client_secret in the body with the application/x-www-form-urlencoded content-type' } }
私は正しくコールを設定していると思います。誰かが正しい方向に私を向けることができますか?ありがとうございました!
ルック(https://stackoverflow.com/questions/9870523/differences-in-application-json-and-application-x-www-form-urlencoded) –
缶'content-type'で小文字でチェックしますか? – abdulbarik
@abdulbarikうまくいきませんでした –