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

YOU SHOULD USE https://github.com/lepture/authlib

Results 13 flask-oauthlib issues
Sort by recently updated
recently updated
newest added

This fixes the recent deprecation of unencrypted repo access in GitHub

Hi, I have added support for ppc64le build on travis-ci in the branch . The travis-ci build log can be tracked on the link :https://travis-ci.com/github/sanjaymsh/flask-oauthlib/builds/189444511 . I believe it is...

This extends `Client.validate_scopes()` to additionally take `request` argument (and, essentially, `request.user`) so both `scopes` and `user` are available in validation/authorization logic.

1. Fixed the code to handle content_type missing from headers. instead of defaulting it to JSON, now trying to load it to json, xml, or then simply returning the content....

Fixes the "Scopes must be set on post auth" error when trying to request the authorization endpoint without specifying the "scope" parameter, as allowed in the OAuth RFC.

According to http://tools.ietf.org/html/rfc7009 additional endpoint for token revocation should implement client authentication (Basic Auth). It is also expected in oauthlib and cause that error. I have used "request.headers" (not so...

Changes to the client so that OAuth flows are stateless, not requiring `session`. Closes #268 --- This change is [](https://reviewable.io/reviews/lepture/flask-oauthlib/270)

Byte encoding can be tricky, but here's how to do it right with Python3 for the reddit example.

After several iterations, this is the cleanest implementation I've found to add support for oauth1 requests that do not include an access token. There are many cases when you an...