Ignacio
Ignacio

Reputation: 7938

how to get goo.gl analytics?

I want to get all the analytics that goo.gl has for a given short url, for example http://goo.gl/kuBJ7S

I tried the following

curl 'https://www.googleapis.com/urlshortener/v1/url?shortUrl=http://goo.gl/kuBJ7S&projection=FULL'

but I don't really get much data this way. For example, I would like to know for each click the ip address, timestamp for the click, etc.

Is this possible? How?

Upvotes: 0

Views: 1296

Answers (1)

deceze
deceze

Reputation: 522332

The returned data is documented here: https://developers.google.com/url-shortener/v1/url

No, this does not include individual users' IP addresses or such. I'd imagine that would be a gross violation of privacy laws/guidelines/concerns.

Upvotes: 2

Related Questions