Is there a way to track if a blog post has been viewed but not clicked on in a newsreader? For example, when I read through my rss feeds in Google Reader, I generally read the entire article in Google Reader so I never click on the link to the article and therefore it is not tracked in Google Analytics. We use feedburner to track rss clicks.
相关问题
- Install ASP.NET 5.0 version of System.ServiceModel
- Set API key with embed API google analytics
- joda - parsing time zone of pubDate in RSS item
- Integrate Firebase Analytics with Xamarin Android
- Real time visitors from Google Analytics. How to g
相关文章
- Encoding error while parsing RSS with lxml
- How to correctly use google analytics measurement
- Android referral tracking not working with Google
- Universal Analytics Measurement Protocol respond 2
- Profiling the Performance of a Google App Script
- Testing Google Analytics iOS SDK
- How to solve Fatal error: Index out of range in Sw
- Tracking Anchor Links in Goal Funnels
You would need a service to make the correct requests to the Google Analytics API or redirect to it. There are two APIs you can use:
To use the later (you need Universal Analytics), which is way better in my opinion, you would need to make a request or redirect to something like:
http://www.google-analytics.com/collect?z=<randomnumber>&t=pageview&dh=<domainname>&cid=<unique-client-uuid>&tid=<propertyid>&v=1dp=<path>
Where:
<randomnumber>
is a random number to avoid caches (especially if you do redirects)<domainname>
is the domain name you see in your tracking code<propertyid>
is the property id you see in your tracking code (eg: UA-123456)<path>
is the path to the page you want to register the pageview for. Note that it must be quoted. Eg, for/path/to/page
you would need to send%2Fpath%2Fto%2Fpage
I've implemented a simple redirector service that does exactly that here (explained at length here)
If you're stuck with the Classic Analytics then you would need to use nojsstats or the older implementation
No, it's not possible, unfortunately, because you can't embed the JavaScript needed to trigger the pageview into a newsfeed.