flask-dance icon indicating copy to clipboard operation
flask-dance copied to clipboard

Doing the OAuth dance with style using Flask, requests, and oauthlib.

Results 44 flask-dance issues
Sort by recently updated
recently updated
newest added

The following client_id and client_secret are ignored ``` google_bp = make_google_blueprint( scope=["profile", "email"], client_id=settings.ADMIN_GOOGLE_OAUTH_CLIENT_ID, client_secret=settings.ADMIN_GOOGLE_OAUTH_CLIENT_SECRET, ) ``` The application is automatically using these other variables (note the missing ADMIN_ prefix)...

Looking at a lot of the providers they're very similar in code, options, structure and tests we write. I wonder if we should ship a [Cookiecutter](https://cookiecutter.readthedocs.io/en/latest/) to help generate a...

repost from https://github.com/singingwolfboy/flask-dance/issues/203#issuecomment-486333141 (CC @daenney @singingwolfboy) Right now the expectation is that writers of `oauth_authorized` callbacks handle saving the token if they want a redirect. This leads to more complicated...

@singingwolfboy Should we consider specifying some minimum dependencies in `requirements.txt` at this point? Right now there's a fairly wide range of allowed versions, which aren't likely to all work well...