我正在Battle.net API上使用带有Express的Node.js来生成Oauth令牌。 https://develop.battle.net/documentation/guides/using-oauth
生成令牌本身是可行的,因为它会向我返回令牌。但是当我使用代码向其API发出请求时,例如:
我收到401未经授权的错误响应,调试日志:
{ url:
'https://eu.api.blizzard.com/wow/guild/Malfurion/The%20new%20Dimension?fields=members&locale=de_DE&access_token=HEREISMYTOKEN',
status: 401,
statusText: 'Unauthorized',
headers: Headers { [Symbol(map)]: [Object] } }
我正在尝试通过fetch()获取公会的成员。
我已经尝试过:
创建一个新的应用程序(具有新的客户端密钥和ID)
在Battle.net设置中设置所有可能的回调网址:
https://localhost/ http://localhost/ https://localhost:443/ http://localhost:443/ https://localhost/auth/bnet/callback http://localhost/auth/bnet/callback https://localhost:443/auth/bnet/callback http://localhost:443/auth/bnet/callback
通过“尝试api”(https://develop.battle.net/documentation/api-reference/world-of-warcraft-community-api)手动创建令牌,在其中您可以输入客户ID和密码,然后获得一个临时令牌。在我的应用程序中也可以使用。
您可以比较这两个网址的响应(只需使用浏览器即可):
第二(生成是在Battle.net网站上尝试API,您在其中填写了clientid和secret以测试api):https://eu.api.blizzard.com/wow/guild/Blackmoore/The%20new%20Dimension?fields=members&locale=de_DE&access_token=US23su4g0hAeS5w3EUCkKA9MJPgJ8k8bzV
代码
server.js,简单的快递应用程序
var BNET_ID = "MYID";
var BNET_SECRET = "MYSECRET";
...
// Use the BnetStrategy within Passport.
passport.use(
new BnetStrategy(
{ clientID: BNET_ID,
clientSecret: BNET_SECRET,
scope: "wow.profile sc2.profile",
callbackURL: "https://localhost/",
region: "eu" },
function(accessToken, refreshToken, profile, done) {
process.nextTick(function () {
return done(null, profile);
});
})
);
// bnet auth routes
app.get('/auth/bnet', passport.authenticate('bnet'));
app.get('/auth/bnet/callback',
passport.authenticate('bnet', { failureRedirect: '/' }),
function(req, res){
res.redirect('/');
});
controller.js
...
const res = await fetch(`https://eu.api.blizzard.com/wow/guild/${servers[iterator]}/The new Dimension?fields=members&locale=de_DE&access_token=${thetoken}`).then((res) => {
res.json();
// for debugging, shows 401 Error
console.log(res);
});
...
我实际上期望这样的响应,因为它使用临时令牌起作用:
status: 200 OK
body: {
"lastModified": 1546676373000,
"name": "The new Dimension",
"realm": "Blackmoore",
"battlegroup": "Glutsturm / Emberstorm",
"level": 25,
"side": 0,
"achievementPoints": 1005,
"members":
(......)
}
非常非常hacky,但是我设法通过黑客入侵了oauth回调中间件来解决了这个问题: 将我使用的API令牌设置为req.user.token。
app.get('/auth/bnet/callback',
passport.authenticate('bnet', { failureRedirect: '/?error' }),
function(req, res) {
req.session.bnettoken = req.user.token;
res.redirect('/');
}
);
我怀疑在SessionStorage(express-session)中也使用了“代码”或“令牌”来将当前会话存储在数据库中。所以我只是从请求中窃取user.token并使用它。哎呀。工作时间。
答案 0 :(得分:0)
从文档中,我可以看到您需要将令牌传递到Authorization
头,其值为:Bearer HEREISMYTOKEN
。
有关授权标题和标题的更多信息,请点击此处:
如何使用它的示例可以在this SO answer
中找到