为清楚起见编辑:
使用 python/Flask REST-API 为 ExtJS 应用程序提供安全端点(使用基本身份验证)。CORS 已启用。在我对 Safari 的所有测试中,所有人都表现出色。决定测试其他浏览器(IE、Chrome 和 Firefox),结果我不断收到 401 错误并且没有登录对话框。
我发现以下博客文章http://mortoray.com/2014/04/09/allowing-unlimited-access-with-cors/建议添加以下代码块以确保覆盖所有端点的所有标头:
@app.after_request
def add_cors(resp):
""" Ensure all responses have the CORS headers. This ensures any failures are also accessible
by the client. """
resp.headers['Access-Control-Allow-Origin'] = request.headers.get('Origin','*')
resp.headers['Access-Control-Allow-Credentials'] = 'true'
resp.headers['Access-Control-Allow-Methods'] = 'POST, OPTIONS, GET'
resp.headers['Access-Control-Allow-Headers'] = request.headers.get(
'Access-Control-Request-Headers', 'Authorization' )
# set low for debugging
if app.debug:
resp.headers['Access-Control-Max-Age'] = '1'
return resp
我将此添加到我的 api 代码中,希望它可以工作,但似乎没有任何区别。
API 通过 Apache 使用 mod_wsgi 托管,所有身份验证都使用该WSGIPassAuthorization On
指令传递给 wsgi 应用程序。
不用说,我有点困惑。如果检测到 401 错误,我不应该总是得到登录对话框吗?