问题描述
我正在尝试为来自远程 url 的特定文档设置 swagger UI,但它无法获取
说 Fetch errorPossible cross-origin (CORS) issue?.
from flask import Flask
from flask_swagger_ui import get_swaggerui_blueprint
app = Flask(__name__)
SWAGGER_URL = '/swagger'
API_URL = 'https://api_url/documentaion'
SWAGGERUI_BLUEPRINT = get_swaggerui_blueprint(
SWAGGER_URL,API_URL,config={
'app_name': "Test"
},)
app.register_blueprint(SWAGGERUI_BLUEPRINT,url_prefix=SWAGGER_URL)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.debug = True
app.run()
无法获取,因为 remote_url 需要身份验证标头令牌。我想为 API_URL 的请求添加一些标头令牌,有没有办法做到这一点?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)