Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/handlers/authenticate-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class AuthenticateHandler {

getTokenFromRequestHeader(request: Request) {
const token = request.get('Authorization');
const matches = token.match(/Bearer\s(\S+)/);
const matches = token.match(/^Bearer\s(\S+)/);

if (!matches) {
throw new InvalidRequestError(
Expand Down
2 changes: 1 addition & 1 deletion test/integration/handlers/authenticate-handler.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ describe('AuthenticateHandler integration', () => {
const request = new Request({
body: {},
headers: {
Authorization: 'foobar',
Authorization: 'foo Bearer bar',
},
method: 'ANY',
query: {},
Expand Down