gpt4 book ai didi

node.js - Discord Oauth2 访问 token 'Grant type None is not supported'

转载 作者:行者123 更新时间:2023-12-05 01:30:04 24 4
gpt4 key购买 nike

我正在尝试为我用 express 制作的网站制作一个不和谐的登录系统。我创建了一个函数来获取访问 token ,以便我可以在路由中使用该函数。

我正在尝试从以下位置获取访问 token :https://discord.com/api/oauth2/token

这是我的代码:

    async GetToken(code) {
let access_token;
const payload = {
'client_id': client_id,
'client_secret': client_secret,
'grant_type': 'authorization_code',
'code': code,
'redirect_uri': redirect_uri,
'scope': scope,
};
const config = {
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
};
fetch(discord_token_url, {
method: 'post',
body: payload,
headers: config.headers,
}).then(response => response.json()).then(json => console.log(json)).catch(err => console.log(err));
return access_token;
},

这是我得到的错误:

{
error: 'unsupported_grant_type',
error_description: 'Grant type None is not supported'
}

如您所见,我提供了正确的授权类型,但我收到此错误。

最佳答案

忘记更新以添加解决方案,看到很多人都在看这个所以这是解决方案(感谢@Kira):你必须使用 URLSearchParams

// Modules
const fetch = require('node-fetch');
const { url } = require('inspector');
const { URLSearchParams } = require('url');

// Add the parameters
const params = new URLSearchParams();
params.append('client_id', client_id);
params.append('client_secret', client_secret);
params.append('grant_type', 'authorization_code');
params.append('code', code);
params.append('redirect_uri', redirect_uri);
params.append('scope', scope);

// Send the request
fetch('https://discord.com/api/oauth2/token', {
method: 'post',
body: params,
headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Accept': 'application/json' },
}).then(r => r.json()).then(Response => {
// Handle it...
handle()
});

关于node.js - Discord Oauth2 访问 token 'Grant type None is not supported',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67365624/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com