正在通过 gsutils 和 google 云存储下载 google 游戏控制台统计信息
Downloading google play console statistics via gsutils & google cloud storage
我正在尝试通过 cli 从 google playstore 控制台提取数据。
我用作参考的文档是this。
我已从 Playstore 控制台检索到我的云存储 URI 并使用了以下命令:
gsutil cp -r gs://pubsite_prod_xxxxxx/stats/installs/installs_com.my.package_2021* .
我收到这样的错误消息:
zsh:未找到匹配项:gs://pubsite_prod_xxxxx/stats/installs/installs_com.my.package_2021*
我正在尝试了解问题所在。任何指针都会有很大帮助。
其他详情:
虽然我的playstore账号已经两三年了,但我刚刚创建了我的google云平台账号。 (所以,问题可能是没有报告写入我的存储桶,尽管播放控制台上提到了一个 URI?)
我无法通过google云平台控制台看到这个bucket。存储桶列表为空。 (但是我不确定我是否在寻找正确的地方)。在我正在查看的控制台上附上项目的屏幕截图。
screenshot - empty list of buckets
这是一个与 ZSH 相关的问题您可以更改 shell,通过 sudo chsh --shell=/bin/bash $USER
将更改 /etc/passwd
[= 中的 shell 字段16=]
或者您可以在特殊字符周围使用 '
来转义特殊字符,以便让 the shell recognize it. 像:
gsutil cp -r 'gs://pubsite_prod_xxxxxx/stats/installs/installs_com.my.package_2021*' .
我正在尝试通过 cli 从 google playstore 控制台提取数据。
我用作参考的文档是this。
我已从 Playstore 控制台检索到我的云存储 URI 并使用了以下命令:
gsutil cp -r gs://pubsite_prod_xxxxxx/stats/installs/installs_com.my.package_2021* .
我收到这样的错误消息:
zsh:未找到匹配项:gs://pubsite_prod_xxxxx/stats/installs/installs_com.my.package_2021*
我正在尝试了解问题所在。任何指针都会有很大帮助。
其他详情:
虽然我的playstore账号已经两三年了,但我刚刚创建了我的google云平台账号。 (所以,问题可能是没有报告写入我的存储桶,尽管播放控制台上提到了一个 URI?)
我无法通过google云平台控制台看到这个bucket。存储桶列表为空。 (但是我不确定我是否在寻找正确的地方)。在我正在查看的控制台上附上项目的屏幕截图。 screenshot - empty list of buckets
这是一个与 ZSH 相关的问题您可以更改 shell,通过 sudo chsh --shell=/bin/bash $USER
将更改 /etc/passwd
[= 中的 shell 字段16=]
或者您可以在特殊字符周围使用 '
来转义特殊字符,以便让 the shell recognize it. 像:
gsutil cp -r 'gs://pubsite_prod_xxxxxx/stats/installs/installs_com.my.package_2021*' .