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
Hi guys i'm using the decorator @jwt_token() in my namespace therefore when i authenticate in the swagger the header does not shown in cUrl, and my response is 401,
i'm setting in Api() the authentication but the header is not sent
swagger = Api(
title='Ágil Web Documentação',
version='',
description='Api de Testes',
prefix='',
doc='/docs',
security='apiKey',
authorizations={
'apikey': {
'type': 'apiKey',
'in': 'header',
'name': 'Authorization',
'description': "Type in the *'Value'* input box below: **'Bearer <JWT>'**, where JWT is the token"
}
},
)
Hi guys i'm using the decorator @jwt_token() in my namespace therefore when i authenticate in the swagger the header does not shown in cUrl, and my response is 401,
i'm setting in Api() the authentication but the header is not sent
The text was updated successfully, but these errors were encountered: