Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I understand that Google Analytic's Advanced Segments can be used to track referrals made from Facebook. I am creating my own tracking system and want to emulate this referral tracking feature. I assume as google analytics is javascript based, it would use the 'document.referrer' to achieve this. However, the document.referrer is not tracked from https based connections, a.k.a facebook. so my question is:

How Google Analytics track traffic generated from Facebook? How can I emulate this using a javascript?

share|improve this question

1 Answer

As I know, IE blocks referrer when user moves http to https.

http://support.microsoft.com/kb/178066/en-us?fr=1

So if you host your tracking code on https protocol, maybe it works.

share|improve this answer
maybe, but that means forced HTTPS for hosting, I don't think Google Analytics has that limitation – user1830568 Jan 16 at 1:44
I did test on IE and document.referrer was 'facebook.com/l.php?u=...';. It was 'facebook.com'; on chrome. Maybe was Facebook detect IE and use non-https landing page? if that was, why your code doesn't work? maybe need more research :( – Deminoth Bono Jan 16 at 4:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.