使用jwt_required添加资源?

时间:2017-07-05 12:19:04

标签: python flask jwt flask-restful

我使用flask创建了一个API,其中使用flask_jwt_extended进行身份验证工作正常。

但是,如果我添加一个具有jwt_required装饰器的资源,我会收到此错误。

  File "/Library/Python/2.7/site-packages/flask_jwt/__init__.py", line 176, in decorator
    _jwt_required(realm or current_app.config['JWT_DEFAULT_REALM'])
KeyError: 'JWT_DEFAULT_REALM'

示例资源:

class Endpoint(Resource):

    @jwt_required()
    def get(self):
        return {"State": "Success"}

初始化应用:

app = Flask(__name__)
api = Api(app)

添加资源:

api.add_resource(resource_class, "/myEndpoint")

我能让它工作的唯一方法是在与API相同的文件中定义Endpoint类。

我认为我需要将Realm传递到端点类并使用jwt_required上的可选参数来设置Realm。

2 个答案:

答案 0 :(得分:1)

我认为您忘记初始化JWT实例。你可以用两种方式做到这一点。的第一

from flask import Flask
from flask_jwt import jwt_required, JWT
from flask_restful import Resource, Api

class Endpoint(Resource):

    @jwt_required()
    def get(self):
        return {"State": "Success"}

app = Flask(__name__)
app.config['SECRET_KEY'] = 'super-secret'

def authenticate(username, password):
    # you should find user in db here
    # you can see example in docs
    user = None
    if user:
        # do something
        return user

def identity(payload):
    # custom processing. the same as authenticate. see example in docs
    user_id = payload['identity']
    return None
# here what you need
jwt = JWT(app, authenticate, identity)
api = Api(app)

api.add_resource(Endpoint, '/myEndpoint')

if __name__ == '__main__':
  app.run(debug=True)
  app.run(host='0.0.0.0')

第二种方式是更新我们的应用程序配置。只需改变:

jwt = JWT(app, authenticate, identity)

要:

app.config.update(
     JWT=JWT(app, authenticate, identity)
)

让我们开启我们的路线。你会看到:

{
  "description": "Request does not contain an access token", 
  "error": "Authorization Required", 
  "status_code": 401
}

希望它有所帮助。

答案 1 :(得分:1)

在我导入jwt_required:

的资源中发现了这个问题 来自flask_jwt_extended import jwt_required

但是我需要从JWT所在的类中导入jwt_required。