基于Flask-Stormpath令牌的身份验证

时间:2016-05-12 07:20:45

标签: python flask oauth-2.0 stormpath flask-oauthlib

我正在尝试为Flask REST API实现基于令牌的身份验证。我使用Stormpath作为我的第三方身份验证服务。

我查看了flask-stormpath之上构建的flask-login。看起来它使用基于密码的身份验证,因为他们正在尝试维护服务器上的会话。此外,文档没有提供足够的信息。

我们是否有基于stormpath令牌的身份验证的烧瓶集成? 如果是,有人可以指向我一个示例代码。

我已经浏览了github上的stormpath/flask-stormpath-sample,它再次维护了服务器中的会话。

参考文献:

https://stormpath.com

https://github.com/stormpath/stormpath-flask

2 个答案:

答案 0 :(得分:3)

所以这是我目前使用的方式,直到rdegges将此功能构建到flask-stormpath

你需要stormpath python sdk最新版本并从func工具包装。

from stormpath.api_auth import (PasswordGrantAuthenticator, RefreshGrantAuthenticator, JwtAuthenticator)
from functools import wraps

您可以这样创建应用程序。

stormpathClient = Client(id=KEYS['STORMPATH_ID'], secret=KEYS['STORMPATH_SECRET'])
stormpathApp = stormpathClient.applications.search('your-application')[0]

此装饰器将帮助您保护端点。

def tokenRequired(func):
    """
        Decorator to apply on all routes which require tokens.
    """

    @wraps(func)
    def wrappingFunc():
        #check the auth header of the request for a bearer token.
        authHeader = request.headers.get('Authentication')

        #make sure that the string is a bearer type.
        if len(authHeader)<8 or (not authHeader[:7] == 'Bearer ') or (
                not authHeader):
            return Response("401 Unauthorized",401)
        authToken = authHeader[7:]

        try:
            authenticator = JwtAuthenticator(stormpathApp)
            authResult = authenticator.authenticate(authToken)
            request.vUser = authResult.account
        except:
            return Response("403 Forbidden",403)

        return func()

    return wrappingFunc

#Use this decorator like below.

@flaskApp.route('/secure-route',methods=['GET','POST'])
@tokenRequired
def secureEndpoint():

    # return JSON based response 
    return Response("This is secure Mr." + request.vUser.given_name   ,200)

如果有人想知道令牌发布和刷新终点,请在评论中告诉我。

答案 1 :(得分:2)

我是Flask-Stormpath图书馆的作者。答案是不。我实际上正在开发一个新版本的库(大约一个月左右),它将默认提供此功能,但现在它只支持基于会话的身份验证。