Currently an oauth redirect URL is hardcoded as oauth2-redirect.html, this works fine for example applications but for production apps you probably want to specify your own URL so you can add logic such as creating a user account etc.
This change adds a new config variable called SWAGGER_UI_OAUTH_REDIRECT_URL which will tell swagger which URL to use when submitting to the oauth endpoint. This will need to match what has been previously configured with the oauth provider.
I've also included a simple github oauth example for reference.
As this is my first PR into this project please let me know if there are any changes or additions I need to make this to comply with the prioject standards.
Currently an oauth redirect URL is hardcoded as
oauth2-redirect.html
, this works fine for example applications but for production apps you probably want to specify your own URL so you can add logic such as creating a user account etc.This change adds a new config variable called
SWAGGER_UI_OAUTH_REDIRECT_URL
which will tell swagger which URL to use when submitting to the oauth endpoint. This will need to match what has been previously configured with the oauth provider.I've also included a simple github oauth example for reference.
As this is my first PR into this project please let me know if there are any changes or additions I need to make this to comply with the prioject standards.
Resolves: https://github.com/python-restx/flask-restx/issues/438