1

GoogleAnalyticsAPIで受信したデータを使用して折れ線グラフを作成したい。Highcharts.jsを使用してグラフをプロットすることは問題ありませんが、パフォーマンスの高いクエリの解決策を探しています。私が持っていた唯一のアイデアは、次のクエリを使用して、30日間のグラフに対して30のデータ要求を行い、毎日のページビューを取得することです。

https://www.google.com/analytics/feeds/data?ids=$id&dimensions=$dimension&metrics=$metric&sort=$sort&start-date=$start&end-date=$end&max-results=$max_results&start-index=$start_index

このデータを1つのクエリで受け取る方法はありませんか?

4

3 に答える 3

2

I can't actually see the dimensions you're trying to query because you're using variables but you should just be able to use the ga:date dimension to get data split by day.

You can only download a maximum of 10,000 rows per query but you can use the start-index parameter to get the rest.

于 2011-05-13T13:23:37.317 に答える
0

ディメンション ga:day をクエリに追加してみてください。これにより、データが 1 日ごとに並べ替えられます

于 2011-06-24T07:41:42.287 に答える
0

$start および $end の日付変数に 30 日を含めることができます。これにより、リクエストが 30 から 1 に減ります。

于 2011-05-13T13:27:23.483 に答える