I want to implement sso for multiple providers in my app.
Currently I am using flask-oauthlib for the authentication. For google authentication sso login works like a charm.
Since I will have multiple sso providers, I was wondering if I could simply have one text field on my landing page, and then redirect the user according to the email domain to the right sso provider while automatically initializing the handshake process.
The question is, to whether I can automatize the sso login, without having the user to select their account on Google's Choose an account page; thus saving an additional step?
I hope this makes sense, thank you!
Automatic sso login
751 Views Asked by baconStrips At
1
There are 1 best solutions below
Related Questions in PYTHON
- How to store a date/time in sqlite (or something similar to a date)
- Instagrapi recently showing HTTPError and UnknownError
- How to Retrieve Data from an MySQL Database and Display it in a GUI?
- How to create a regular expression to partition a string that terminates in either ": 45" or ",", without the ": "
- Python Geopandas unable to convert latitude longitude to points
- Influence of Unused FFN on Model Accuracy in PyTorch
- Seeking Python Libraries for Removing Extraneous Characters and Spaces in Text
- Writes to child subprocess.Popen.stdin don't work from within process group?
- Conda has two different python binarys (python and python3) with the same version for a single environment. Why?
- Problem with add new attribute in table with BOTO3 on python
- Can't install packages in python conda environment
- Setting diagonal of a matrix to zero
- List of numbers converted to list of strings to iterate over it. But receiving TypeError messages
- Basic Python Question: Shortening If Statements
- Python and regex, can't understand why some words are left out of the match
Related Questions in FLASK
- How to store a date/time in sqlite (or something similar to a date)
- Authenticate Flask rest API
- How can I update my Python app so my Flask function sends information to JavaScript without breaking the loop?
- How to create a route on a web map (Flask) using folium and osmnx?
- for some reallly odd reason css doesen't apply
- Sigma.JS custom rendering
- Unable to find any supported Python versions
- Flask Application Testing with pytest Returns 404 for Routes
- flask keep a user logged in across browser sessions
- database login.py and register.py error showing 404 file not found and doesn't work
- Synology DSM 7.2: how do I fix a virtual server error page for a Flask application?
- Frontend fetching data from unexpected localhost address despite proxy configuration
- Trouble Extracting Request Body in Flask-Lambda Application Deployed on AWS Lambda via AWS SAM
- Page refreshes on POST request
- Handling Irrelevant Uploads in Flask Application for Bone Fracture Detection
Related Questions in OAUTH
- Lambda endpoint for the Google OAuth callback does not recieve the access_token
- Miro oauth api throws error 401 Invalid authorization code
- Error from Identity Provider - OIDC Scope Error
- get refresh token in axios interceptor
- How would single sign-on work for my multi-tenant application?
- How to get OAuth2 Access token from Postman
- How to use Oauth in order to log‑in on .googleapis.com on almost any arbitrary endpoints domains from the web browser?
- How to fix common 500 internal server error when use POST method on NEXTJS
- How to use a different account for OAuth with dbt-core and profiles.yml?
- ASP.NET Core Google external login issue
- Implementing IDP Initiated Flow Using OIDC
- Migration of UseOAuthAuthorizationServer from .Net Framework to .Net8
- Django Allauth Bad Request Error, Error Retrieving Access Token: Invalid Grant
- angular oauth 2 oidc doesn't work with github idp
- Handling oauth in flutter app without browser
Related Questions in SINGLE-SIGN-ON
- Generate Databricks personal access token using REST API
- Allow external users to login using custom SAML app in Google Admin
- Handling errors in MSAL Redirect - reactjs login with microsoft sso
- How would single sign-on work for my multi-tenant application?
- How can we make an environment specific Token-based authorization using Ping Token?
- Is it possible to integrate Looker Studio with websites without keeping it public, to preserve data?
- OKTA SSO Driven API Invocation
- Is there any way to login SSO using RestAssured or using any API calls?
- Is it possible to interact with SSO between Website A and Website B?
- SSO to Grafana embeded in iframe
- Secure React App and .net 6 apis with Keycloack
- Integrating one tap sign in with phone from phone email - Converting html and javascript code to React JS
- I need SSO and Maven to work together in a Tomcat 9 Eclipse project, I have check the usual suspects but I think I missed something
- Firebase Authentication SAML resource metadata file
- How to add ForceAuthn flag on AWS cognito
Related Questions in FLASK-OAUTHLIB
- ImportError: cannot import name 'url_quote' from 'werkzeug.urls'
- SSL:CERTIFICATE_VERIFY_FAILED when requesting an OAuth access token from Google
- Flask controller for Authlib get token returns "unsupported_grant_type"
- flask_oauthlib invalid response from discord
- Twitter Oauth Callback URI / Redirect URL. Python Flask Oauthlib
- Flask Facebook Login using Oauthlib - redirect problem
- Get proper usernames to populate on Superset with Azure SSO instead of ID string
- TypeError: 'ResourceProtector' object is not callable
- RuntimeError: Missing "jwks_uri" in metadata for flask and Azure AD authlib
- RuntimeError: Missing "jwks_uri" in metadata for flask and Google authlib
- Python requests-oauthlib - adding parameters to authorization header for Oauth1 request
- OAuth Superset integration - custom_token_headers not passed to access_token_url
- Redirect User to original URL after Google login in Flask
- Spotify API create playlist - error parsing JSON
- Authlib Flask Client - How to validate and refresh the access token
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
According to OAuth2.0 standards, at the time of authorizing this is not possible to tell SSO provider like Google in advance which user account is going to be used.
But still needs to check particularly with OAuth2 implementation of Google.
According to standards, user credentials like user name and password should only be challenged on SSO providers(IDP's) page.