Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement 0-legged oauth1 #215

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions docs/oauth1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ Just like request token handler, you can add more data in access token.
Protect Resource
----------------

Protect the resource of a user with ``require_oauth`` decorator now::
Protect a resource with ``require_oauth`` decorator now::

@app.route('/api/me')
@oauth.require_oauth('email')
Expand All @@ -451,9 +451,21 @@ Protect the resource of a user with ``require_oauth`` decorator now::
def user(username):
user = User.query.filter_by(username=username).first()
return jsonify(email=user.email, username=user.username)

@app.route('/api/client')
@oauth.require_oauth(require_user=False)
def client():
client = Client.query.filter_by(client_key=request.oauth.client_key).first()
return jsonify(client_key=client.client_key,
name=client.name,
description=client.description,
user_id=client.user_id)

The decorator accepts a list of realms, only the clients with the given realms
can access the defined resources.
can access the defined resources. Additionally, the decorator supports a require_user
parameter that defaults to True. By setting this to false, this implements "0-legged"
oauth which allows an authorized client to make requests without the context of a user.


.. versionchanged:: 0.5.0

Expand Down