When I try to authorize my swagger I got the following error:
Auth ErrorTypeError: Failed to fetch
and from the redirect page
https://url.com/swaggerui/oauth2-redirect.html?error_description=Missing%20parameter%2C%20%27response_type%27&state=...
Missing parameter: 'response_type'
I would like to add &response_type=code to the redirect url but I have not found a way to do so.
AUTHORIZATION = {
'Baerer Auth': {
'type': 'oauth2',
'flow': 'authorization',
'clientId': '...',
'tokenUrl': '...',
'authorizationUrl': '...',
'scope': { ... }
}
}
When I try to authorize my swagger I got the following error:
and from the redirect page
I would like to add
&response_type=codeto the redirect url but I have not found a way to do so.