我正在尝试使用远程 api 从 blobstore 读取(并随后保存)blob。我得到错误:"No api proxy found for service "blobstore""
当我执行读取时。这是存根代码:
for b in bs.BlobInfo.all().fetch(100):
blob_reader = bs.BlobReader(str(b.key))
file = blob_reader.read()
错误发生在线:file = blob_reader.read()
我正在通过终端从我的个人应用程序点读取文件:
python tools/remote_api/blobstore_download.py --servername=myinstance.appspot.com --appid=myinstance
那么,可以通过远程 api 从 blobstore 读取吗?还是我的代码不好?有什么建议么?