NodeJS - 如何使用带有OAuth和代码令牌的twitch API



嘿,今天我尝试使用 twitch api 通过此端点获取用户数据 GET https://api.twitch.tv/helix/users我想使用身份验证功能来跳过 API 限制。


我选择ExpressJs作为Web框架

这是我的应用.js文件(入口点(

const express = require('express')
const axios = require('axios')
const app = express()
const twitchClientSecret = process.env.twitchAppToken || require('./creditentials.json').twitchAppToken
const twitchClientID = process.env.twitchClientId || require('./creditentials.json').twitchClientId
app.use(express.static(__dirname + '/public'));
 app.get('/twitch-oauth', (req, res) => {
        console.log("hey")
        const requestToken = req.query.code
        console.log("requesttoken:" + requestToken)
        // if (req.query.code) {
            axios({
                method: 'post',
                url: `https://id.twitch.tv/oauth2/token?client_id=${twitchClientID}&client_secret=${twitchClientSecret}&code=${requestToken}&grant_type=authorization_code&redirect_uri=localhost:8080/twitch-oauth`,
                headers: {
                    accept: 'application/json'
                }
            }).then((response) => {
                console.log(response)
                console.log("response" + response)
                const accessToken = response.data.access_token
                res.cookie('twitch_id_token', accessToken)
                res.redirect('/')
            }).catch((error) => {
                // Error 😨
                if (error.response) {
                    console.log(error.response.data);
                    console.log(error.response.status);
                    console.log(error.response.headers);
                } else if (error.request) {
                    console.log(error.request);
                } else {
                    console.log('Error', error.message);
                }
                console.log(error.config);
            });
        // }
    })
// Start the server on port 8080
app.listen(8080)

这是我的索引.html(文件与HTTP __dirname + '/public'一起提供(

<a id="twitch-auth" href="https://id.twitch.tv/oauth2/authorize?client_id=6mrxy6lqs4m9svcim8ssr44ypzvk1c&redirect_uri=http://localhost:8080/twitch-oauth&response_type=code&scope=user:read:email&state=">
        Login with Twitch
    </a>
    <script>
        document.querySelector("#twitch-auth").href = document.querySelector("#twitch-auth").href + Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
    </script>
    <script src="logic.js"></script>

最后是我的逻辑.js文件

const token = Cookies.get('twitch_id_token')
var cookie = document.cookie;
console.log(token);
if (token) {
    fetch('https://api.twitch.tv/helix/users?id=44322889', {
        method: 'GET',
        headers: {
            Accept: '*/*',
            Authorization: 'Bearer ' + token,
        }
    })
    // Parse the response as JSON
    .then(res => res.json())
    .then(res => {
        console.log(res)
    });
}

问题所在

当我单击"使用 Twitch 登录"按钮时,当 axios 发布此请求时,我收到一个 http 错误:https://id.twitch.tv/oauth2/token?client_id=${twitchClientID}&client_secret=${twitchClientSecret}&code=${requestToken}&grant_type=authorization_code&redirect_uri=localhost:8080/twitch-oauth

我回来{status: 400, message: "Parameter redirect_uri does not match registered URI"}

有人可以帮助我吗?感谢您的回复

{status: 400, message: "Parameter redirect_uri does not match registered URI"}

响应基本上是告诉您:">错误请求",因为参数redirect_uri在您的请求中。

localhost:8080/twitch-oauth尚未注册为有效的重定向 URI。

您可能需要转到OAuth部分并将localhost:8080/twitch-oauth设置为有效的redirect_uri,因此Twitch平台将允许重定向并正确处理请求。

来自 Twitch 开发文档:

redirect_uriURI
已注册的重定向 URI。这必须与在前面的注册步骤中注册的重定向 URI 完全匹配。已注册的重定向 URI。这必须完全

希望这可以解决您的问题。祝你好运!

最新更新