我试图通过api从我自己的Google分析帐户中获取关键字。
我使用以下代码从Google Analytics Api
获取结果$ results = $ analytics-> data_ga-> get( 'ga:'。 $简档, '30daysAgo', '今天', 'GA:会话', 阵列( 'dimensions'=> 'GA:关键字', 'sort'=> 'GA:关键字', 'max-results'=> 10 ));
它返回低于结果,但只有4个关键字,我想要所有关键字,我该怎么做?
[0] => Array
(
[0] => (not provided)
[1] => 264
)
[1] => Array
(
[0] => (not set)
[1] => 1417
)
[2] => Array
(
[0] => keyword
[1] => 6
)
[3] => Array
(
[0] => keyword
[1] => 2
)