當前位置: 首頁>>代碼示例>>Python>>正文


Python User.get_by_auth_token方法代碼示例

本文整理匯總了Python中webapp2_extras.appengine.auth.models.User.get_by_auth_token方法的典型用法代碼示例。如果您正苦於以下問題:Python User.get_by_auth_token方法的具體用法?Python User.get_by_auth_token怎麽用?Python User.get_by_auth_token使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在webapp2_extras.appengine.auth.models.User的用法示例。


在下文中一共展示了User.get_by_auth_token方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: authenticate

# 需要導入模塊: from webapp2_extras.appengine.auth.models import User [as 別名]
# 或者: from webapp2_extras.appengine.auth.models.User import get_by_auth_token [as 別名]
def authenticate(request,id):
    auth = Auth(request)
    token = request.headers['Authorization']
    user, ts = User.get_by_auth_token(id, token)
    if not user:
        return None
    elif not user.validate_token(id, 'auth', token):
        return None
    return user
開發者ID:jaredwindover,項目名稱:SetScouter,代碼行數:11,代碼來源:Authorization.py

示例2: validate

# 需要導入模塊: from webapp2_extras.appengine.auth.models import User [as 別名]
# 或者: from webapp2_extras.appengine.auth.models.User import get_by_auth_token [as 別名]
        def validate(*args, **kwargs):
            """ Validates the User ID and token sent in an endpoints request."""

            # Get the headers from the self arg
            headers = args[0].request_state.headers
            token = headers.get('Token')
            if headers.get('User-Id') is None:
                raise endpoints.UnauthorizedException(MESSAGE_UNAUTHORIZED)

            user_id = int(headers.get('User-Id'))
            user, timestamp = User.get_by_auth_token(user_id, token)
            if user:
                return endpoints_method(*args, **kwargs)
            else:
                logging.warn('Invalid API request! User ID:%s, token:%s'
                             %(user_id, token))
                raise endpoints.UnauthorizedException(MESSAGE_UNAUTHORIZED)
開發者ID:djvaldez,項目名稱:endpoints_auth,代碼行數:19,代碼來源:endpoints_auth.py


注:本文中的webapp2_extras.appengine.auth.models.User.get_by_auth_token方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。