You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the API spec swagger.json, the authentication scheme is defined as:
"Token": {
"description": "For accessing the protected API resources, you must have received a a valid JWT token after registering or logging in. This JWT token must then be used for all protected resources by passing it in via the 'Authorization' header.\n\nA JWT token is generated by the API by either registering via /users or logging in via /users/login.\n\nThe following format must be in the 'Authorization' header :\n\n Token: xxxxxx.yyyyyyy.zzzzzz\n \n",
"type": "apiKey",
"name": "Authorization",
"in": "header"
}
Shouldn't it be of "type": "http", "scheme": "bearer", "bearerFormat": "JWT"?
The text was updated successfully, but these errors were encountered:
In the API spec
swagger.json
, the authentication scheme is defined as:Shouldn't it be of
"type": "http"
,"scheme": "bearer"
,"bearerFormat": "JWT"
?The text was updated successfully, but these errors were encountered: