【问题标题】:Discord Ouath2 Access Token 'Grant type None is not supported'Discord Oauth2 访问令牌“不支持授予类型无”
【发布时间】:2021-07-25 16:04:50
【问题描述】:

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

我正在尝试从以下位置获取访问令牌: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'
}

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

【问题讨论】:

标签: node.js express oauth-2.0 discord


【解决方案1】:

忘记更新以添加解决方案,看到很多人在看这个,所以这里是解决方案(感谢@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()
});

【讨论】:

    猜你喜欢
    • 2020-03-31
    • 2015-07-21
    • 2016-10-02
    • 1970-01-01
    • 2021-05-05
    • 1970-01-01
    • 1970-01-01
    • 2022-01-08
    • 1970-01-01
    相关资源
    最近更新 更多