Приветствую, подскажите почему не работает не пойму говорит
{"error_description": "grant_type not in POST", "error": "invalid_request"}
что нет так?)
var options = {
"grant_type": "authorization_code",
"code": code,
"client_id": ci,
"client_secret": cs
};
var opt = {
"url": "https://oauth.yandex.ru/token",
"method": "POST",
"headers": {
'Content-type': 'application/x-www-form-urlencoded'
},
"grant_type": "authorization_code",
"code": code,
"client_id": ci,
"client_secret": cs
};
request.post(opt, (req, res) => {
console.log(opt);
var body = res.body;
console.log(body);
});