我正在使用“send_blob”从谷歌应用引擎 blobstore 下载 pdf。我如何为此启用 CORS?我已经尝试添加
self.response.headers.add_header("Access-Control-Allow-Origin", "*")
到我调用 send_blob 但它不起作用的函数。
最佳答案
在中找到解决方案
http://enable-cors.org/server_appengine.html
为 blobstore 下载处理程序添加了一个基本处理程序。
关于python - 在谷歌应用引擎 blobstore 下载器中启用 CORS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18354534/