NodeJS-如何将抽搐API与OAuth和代码令牌一起使用

时间:2019-06-19 17:30:51

标签: javascript node.js oauth twitch twitch-api

  

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


我为网络框架选择ExpressJs

这是我的app.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)

这是我的index.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>

最后是我的logic.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 POST此请求时,我收到一个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"}

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

1 个答案:

答案 0 :(得分:0)

{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_uri URI
  您注册的重定向URI。这必须与上一步Registration中注册的重定向URI完全匹配。您注册的重定向URI。这必须完全

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