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

OAuth Support for Flask

Results 46 flask-oauth issues
Sort by recently updated
recently updated
newest added

In working with an OAuth endpoint that used SSL, I discovered that the certifying authority’s certificate (Network Solutions in this case) was not included in the cacerts.txt file that ships...

In working with an OAuth 1 endpoint that requires a scope parameter to be passed in when getting the access token, I discovered that, while this library supported passing that...

This enables library users to pass extra parameters (as extra_params) that will be added to redirected URL to OAuthRemoteApp's authorize method. This is usefull for facebook if you want to...

The current version actually gives me an error: "UnicodeEncodeError: 'ascii' codec can't encode characters in position #-#: ordinal not in range(128)", since the XML I'm getting back has this information...

I've seen https://github.com/crhym3/simpleauth/blob/master/simpleauth/handler.py where a CSRF token is used for communication with oauth provider. Does flask-oauth offer such security feature already? If not please add support for that.

The `authorized_handler` method raises OAuthException if the OAuth process fails. However, since this method is a decorator, there's no way to write an exception handler that can display a friendly...

In a situation where a user has oauth tokens in their session variables, but makes a oauth.authorize request, the oauth request appears to get signed by the existing keys. I...

To launch the twitter example and use successfully, the db must be initialized. https://github.com/mitsuhiko/flask-oauth/blob/master/example/tweet.py#L180 ``` diff --git a/example/tweet.py b/example/tweet.py index 536836a..2462345 100644 --- a/example/tweet.py +++ b/example/tweet.py @@ -178,4 +178,5 @@...