I use Google analytic, i want to retrieve the last 100 search string from my Google analytic account using YQL or Yahoo pipes, how can i do it?? Please help..
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I just checked in some Google Analytics YQL tables. Right now they use ClientLogin for authentication. Here is the code:
http://github.com/yql/yql-tables/blob/master/google/google.analytics.xml
You need to first authenticate with Email and Passwd and extract out the Auth token from the result. Use that Auth token to call the APIs that will list your accounts and pull data from the API. You should use the Google Analytics explorer to figure out what you want to pull down:
http://code.google.com/apis/analytics/docs/gdata/gdataExplorer.html
Here is an example query that I am using to get a list of my most active pages:
use ‘http://github.com/yql/yql-tables/raw/master/google/google.analytics.xml‘ as ga; select * from ga where auth=’…’ and ids=’ga:2938948′ and dimensions=’ga:pagePath’ and metrics=”ga:pageviews” and sort=”-ga:pageviews” and start=”2010-04-04″ and end=”2010-04-18″ and max=’50’