up vote 9 down vote favorite
2
share [g+] share [fb]

Perhaps I am missing something, but I am just learning javascript.

My understanding of Single Origin Policy is that Google Analytics should not be able to send data back to Google.

How is it able to transmit send data to Google without violating the policy?

link|improve this question

Good question, never released to look into this sort of question. – 网站分析 Apr 7 '11 at 5:38
feedback

3 Answers

up vote 14 down vote accepted

From what I can tell, a webpage includes the JavaScript file from Google, then that script dynamically adds an image to the page (http://www.google-analytics.com/__utm.gif) which contains the information required for logging.

SOP does not apply to scripts, images or CSS files that are dynamically added to a page. This is why you much trust whatever JavaScript files you include in your webpages, as they will have complete control over the page.

link|improve this answer
Where does it get the image? If it gets it from Google, doesn't this violate the policy? – Hortitude Jan 5 '09 at 21:18
1  
The image is from google-analytics.com. Again, the SOP only applies to XHR requests, not files that are included in a page (JS, images & CSS). – Ryan Doherty Jan 5 '09 at 21:32
Got it. Very sneaky and clever. – Hortitude Jan 5 '09 at 21:43
I also found this information on how the image works if anyone cares: groups.google.com/group/analytics-help-basics/msg/… – Hortitude Jan 5 '09 at 21:44
Important to note that it doesn't add the image to the page; it just requests the image in JavaScript by doing something like var img = new Image(); img.src="http://google-analytics/__utm.gif?... – yahelc Aug 17 '11 at 17:50
feedback

Ryan Doherty is correct. The Google Analytics javascript code draws a transparent 1px-by-1px gif image name __utm.gif on your page. When the request (which is located on Google's servers) for this image is made, information is appended as GET parameters. Google captures this data and begins processing it. Usually within 3-6 hours, you'll see the data show up in your GA reports.

link|improve this answer
feedback

It is a javascript callable service provided by google..by making a request to a specific unique URI this is achieved.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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