gpt4 book ai didi

curl - Google Analytics API和用户定义的变量

转载 作者:行者123 更新时间:2023-12-03 17:13:21 24 4
gpt4 key购买 nike

我正在尝试使用Google Analytics(分析)API下载“用户定义”变量。登录正常,它可以正常显示如下所示的正常请求,但是我无法弄清楚如何提取用户定义的变量数据。

USER_EMAIL="my@email.tld" #Insert your Google Account email address here
USER_PASS="mypassword" #Insert your password here
TABLE_ID="ga:12345my_t_id" #Insert your table ID here (ie ga:1234)

googleAuth="$(curl https://www.google.com/accounts/ClientLogin -s \
-d Email=$USER_EMAIL \
-d Passwd=$USER_PASS \
-d accountType=GOOGLE \
-d source=curl-dataFeed-v2 \
-d service=analytics \
| awk /Auth=.*/)"

feedUri="https://www.google.com/analytics/feeds/data\
?ids=$TABLE_ID\
&start-date=2010-04-04\
&end-date=2011-07-07\
&dimensions=ga:source,ga:medium\
&metrics=ga:visits\
&sort=-ga:visits\
&filters=ga:medium%3D%3Dreferral\
&max-results=5\
&prettyprint=true"

curl $feedUri --silent \
--header "Authorization: GoogleLogin $googleAuth" \
--header "GData-Version: 2"


顺便说一下,用户定义的变量是完整的引用URL。

编辑:我使用分析数据资源管理器计算出ga:userDefinedValue,如果需要奖励,请添加评论!:

http://code.google.com/apis/analytics/docs/gdata/gdataExplorer.html

最佳答案

不推荐使用。

您应该使用ga:customVarName(n)

关于curl - Google Analytics API和用户定义的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6642377/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com