将其他登录凭证添加到FLASK JWT LOGIN(身份验证)

时间:2019-12-10 11:16:49

标签: python-3.x flask jwt jwt-auth

创建一个系统来识别来自Mobile APP或DESKTOP的API请求。 背面使用了Python FLASK API。

  

def验证(用户名,密码,临时):       尝试:

    if not (username and password):
        return False

    if check_user_exists(username):
        if hasedincoming == cursor['ownerPassword']:
            app.config['wizard_status'] = cursor['wizard']
            return User(id=cursor['ownerId'])
        else:
            return False
except Exception as e:
    return False
     

jwt = JWT(应用,验证,身份)

现在,我需要在请求中添加诸如Device之类的其他信息,并且需要在Verify方法中进行处理。 可以帮助我自定义对verify方法的请求。

0 个答案:

没有答案