Ib Lundgren

Results 16 comments of Ib Lundgren

Hey, This extension was a quick proof of concept while working on oauthlib and was sadly slightly forgotten since as I ran out of free time to work on it....

Go for it! And please let me know how things go =) I'll ping you when I've made the updates. flask-oauthprovider is quite a thin layer between oauthlib and an...

Yes it is against the spec and should fail or at least raise a warning. I don't think it is a security issue as much as GET requests should not...

I noticed you added support for both, let's keep it that way until there is some more progress on the draft and then follow the latest draft. As far as...

Seem to be some progress on MAC tokens http://tools.ietf.org/html/draft-ietf-oauth-v2-http-mac-03, will keep an eye on it.

Not followed the changes as of late. However a quick look at the spec and I'd say it's grown a bit in complexity since last with a few more fields...

Think the only place this would break would be the `redirect_uri` param and if we want to be careful we could always add `redirect_url` as a param and raise a...

Python 2 is fine and if its caused by requests oauthlib or oauthlib we will fix it. Not sure I can reproduce from the trace alone, can you please include...

@Miserlou Happy to hear you want to write docs :) I've scribbled together an untested example based on the [Google OAuth 2 example](http://requests-oauthlib.readthedocs.org/en/latest/examples/google.html) but for the [UserAgent flow](https://developers.google.com/accounts/docs/OAuth2UserAgent). Let me...

Yes. Try this code ``` client = oauthlib.oauth2.BackendApplicationClient(CLIENT_ID) session = requests_oauthlib.OAuth2Session(CLIENT_ID, client=client) token = session.fetch_token("https://your.token/endpoint", client_id=CLIENT_ID, client_secret=CLIENT_SECRET) # store token if you fancy session.get(API_URL + 'hello/') ``` It might be...