-
Notifications
You must be signed in to change notification settings - Fork 117
Non-standard header structure #361
Comments
Hmmm. I'm pretty sure we were using standard headers in the very recent past. Am I wrong @ekryski? We should probably use the standard by default, and allow the option to customize it. |
The websocket implementation was working fine, but when I tried to test my access token with curl I always received a bad-request error for missing credentials.
|
@timelesshaze by default it doesn't accept Bearer. We are using passport-jwt under the hood so you can customize the format of your header and where your JWT is parsed from by setting If you want to add a PR for a custom strategy that would accept both of those formats it would be welcome 😄 |
I've created an issue on the feathers JWT repo. If you feel like taking a stab, it's a super easy task. feathersjs-ecosystem/authentication-jwt#5 |
Thanks, I'll take a look at it later! |
Steps to reproduce
Feathers is not using the recommended format for JWT authorization headers.
While I can build the header myself, most HTTP libraries have built-in support for bearer auth so that you only need to supply the token.
This does not break feathers, as it is consistently wrong in both the server and client implementations.
The feathers-authentication-client library has an undocumented option to supply a prefix to the chosen header, but no such option exists on the server.
https://github.com/feathersjs/feathers-authentication-client/blob/ffefbc91512ef442dca2d18f0957735a2bf02898/src/hooks/populate-header.js#L19
Expected behavior
The recommended JWT header is in the following form:
Authorization: Bearer
Actual behavior
Feathers uses the following format:
Authorization:
System configuration
Tell us about the applicable parts of your setup.
Module versions (especially the part that's not working):
feathers@2.0.2
feathers-authentication@1.0.0-beta-2
feathers-authentication-jwt@0.2.0
feathers-authentication-local@0.3.0
feathers-errors@2.5.0
feathers-hooks@1.7.0
feathers-rest@1.5.2
feathers-socketio@1.4.2
NodeJS version:
v6.9.1
Operating System:
Ubuntu 16.04.1
Browser Version:
N/A
React Native Version:
N/A
Module Loader:
N/A
The text was updated successfully, but these errors were encountered: