0

我使用 Gsutil 下载了评级和评论数据、收益和销售报告数据,并附有以下评论 gsutil cp -r gs://pubsite_prod_rev_/reviews/* ~/gsutil/output/

现在我正在尝试使用应用程序统计数据。但不知道如何请告诉我,如果你有人知道。

4

2 回答 2

1

您可以尝试使用http://graboto.com,而不必费心使用 gsutil。

于 2014-12-07T22:28:20.837 回答
0

对于所有评论,请使用:

gsutil cp -r gs://pubsite_prod_rev_xxxxxxxx/reviews ./download

对于所有统计数据,请使用:

gsutil cp -r gs://pubsite_prod_rev_xxxxxxxx/stats ./download

对于单一应用程序使用:

gsutil cp -r gs://pubsite_prod_rev_xxxxxxxx/reviews/reviews_your_package_name* ./download

对于指定月份使用的单一应用程序:

gsutil cp -r gs://pubsite_prod_rev_xxxxxxxx/reviews/reviews_your_package_name_201506 ./download
于 2015-06-26T00:13:26.633 回答