Browse Source

Allow access token in URI (#3208)

closed-social-glitch-2
happycoloredbanana 7 years ago
committed by Eugen Rochko
parent
commit
7fba4cb3d1
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      streaming/index.js

+ 3
- 2
streaming/index.js View File

@ -199,8 +199,9 @@ if (cluster.isMaster) {
}
const authorization = req.get('Authorization');
const accessToken = req.query.access_token;
if (!authorization) {
if (!authorization && !accessToken) {
const err = new Error('Missing access token');
err.statusCode = 401;
@ -208,7 +209,7 @@ if (cluster.isMaster) {
return;
}
const token = authorization.replace(/^Bearer /, '');
const token = authorization ? authorization.replace(/^Bearer /, '') : accessToken;
accountFromToken(token, req, next);
};

Loading…
Cancel
Save