dqsw7529 2014-05-18 21:31
浏览 502
已采纳

如何使用google analytics api获取“平均会话持续时间”和“每次访问的平均页面数”

Hi I am using google analytics api gapi to find 'average session duration' and 'Average pages viewed per visit' of site

I had created a dashboard for that and the values are 00:02:30 and 4.58 respectively ...

I use the following code to find it

$ga->requestReportData(ga_profile_id,array('browserVersion'),array('sessions','sessionDuration','avgSessionDuration'), $sort_metric=NULL, $filter=NULL, $fromDate, $toDate,1,50);
echo $ga->getSessionDuration(); echo '<pre>';
echo $ga->getAvgSessionDuration(); 
exit;

But the values returned is 104409 154.45118343195 any idea how to get the correct value

  • 写回答

1条回答 默认 最新

  • duangou1953 2014-05-18 22:58
    关注

    ga:sessionDuration is type time. The total duration of user sessions represented in total seconds.

    ga:avgSessionDuration is also type time. The average duration of user sessions represented in total seconds.

    The API returns raw unformatted data. You will need to format it yourself. To format this in your code you should divide by 60 to get the number of minutes.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部