python-restx / flask-restx

Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask
https://flask-restx.readthedocs.io/en/latest/
Other
2.16k stars 335 forks source link

Support a configurable oauth redirect URL #442

Open thedumbterminal opened 2 years ago

thedumbterminal commented 2 years ago

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

thedumbterminal commented 2 years ago

Addresses: https://github.com/python-restx/flask-restx/issues/438