Randomly getting Cloud Storage Error: UNAUTHORIZED

Randomly getting Cloud Storage Error: UNAUTHORIZED

今天,我开始收到此错误,据我所知,没有任何原因。这不是一个一致的错误。今天突然开始了。它昨天运行完美,几个星期都没有任何错误。

我在文件中只有 file_get_contents()

一段时间以来,我一直在为 get_image.php 使用相同的代码,但直到现在我才收到此错误。

有谁知道为什么这会随机发生而不是持续发生?

[20/Feb/2015:10:53:53 -0800] "POST /get_image HTTP/1.1" 200 149 - - "website.com" ms=296 cpu_ms=86 cpm_usd=0.000017 pending_ms=160 instance=<string> app_engine_release=1.9.18

W 13:53:53.815 PHP Warning:  Cloud Storage Error: UNAUTHORIZED in /base/data/home/runtimes/php/sdk/google/appengine/ext/cloud_storage_streams/CloudStorageReadClient.php on line 310
W 13:53:53.815 PHP Warning:  file_get_contents(gs://bucket/image/page_1.png): failed to open stream: "\google\appengine\ext\cloud_storage_streams\CloudStorageStreamWrapper::stream_open" call failed in /base/data/home/apps/..../get_image.php on line 10

编辑:对于寻找此问题更新的任何人,go to this bug report

根据 Stuart Langley 的 post.

,暂时将此添加到您的代码中作为临时修复
apc_delete('_ah_app_identity_:https://www.googleapis.com/auth/devstorage.read_only');
apc_delete('_ah_app_identity_:https://www.googleapis.com/auth/devstorage.read_write');

根据 Stuart 的说法,该错误已得到修复。您不应再随机 无缘无故地收到此错误。