我可以使用远程 api 从 AppEngine BlobStore 读取数据吗

发布于 2024-10-17 16:30:07 字数 526 浏览 6 评论 0原文

我正在尝试使用远程 api 从 blobstore 读取(并随后保存)blob。当我执行读取时,出现错误:“未找到服务“blobstore”的 api 代理”。 这是存根代码:

    for b in bs.BlobInfo.all().fetch(100):
        blob_reader = bs.BlobReader(str(b.key))
        file = blob_reader.read()

错误发生在以下行:file = blob_reader.read() 我正在通过终端从我的个人 appspot 读取文件:

python tools/remote_api/blobstore_download.py --servername=myinstance.appspot.com --appid=myinstance

那么,可以通过远程 api 从 blobstore 读取文件吗?或者我的代码不好?有什么建议吗?

I am trying to read (and subsequently save) blobs from the blobstore using the remote api. I get the error: "No api proxy found for service "blobstore"" when I execute the read.
Here is the stub code:

    for b in bs.BlobInfo.all().fetch(100):
        blob_reader = bs.BlobReader(str(b.key))
        file = blob_reader.read()

the error occurs on the line: file = blob_reader.read()
I am reading the file from my personal appspot via terminal with:

python tools/remote_api/blobstore_download.py --servername=myinstance.appspot.com --appid=myinstance

So, reading from the blobstore possible via the remote api? or is my code bad? Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

攒眉千度 2024-10-24 16:30:07

我们最近向remote_api添加了blobstore支持。确保您使用的是最新版本的 SDK,这样您的错误就会消失。

We recently added blobstore support to remote_api. Make sure you're using the latest version of the SDK, and your error should go away.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文