我正在尝试使用swagger实现post函数。从swagger发送值时,我的post函数会呈现相应的响应。我在下面尝试了以下代码。
@jwt_required
def post(self):
'''
Call this API to add a values
---
tags:
- Add_value API
consumes:
- application/json
parameters:
- name: body
in: body
required: true
schema:
id: user_id
required:
- serial
- dot
- identificator
- product
- price
- other_id
properties:
# all the requried details
responses:
404:
description: Error! Inspection cannot be put
200:
description: Inspection is given
'''
return jsonify(response)
# do whatever required
这是代码的非常普通的想法。
每当我尝试执行时,都会不断出现以下错误。我不确定如何在这里传递令牌。
{
"error": {
"message": "Your auth token or CSRF token are missing"
}
}
任何帮助将不胜感激。