vote up 4 vote down star

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?

flag

43% accept rate

4 Answers

vote up 8 vote down check

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|flag
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
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/… – Hortitude Jan 5 '09 at 21:44
vote up 0 vote down

by requesting a specific url

link|flag
How does requesting a "specific url" not violate SOP? Isn't that url on a different server (in this case Google)? – Hortitude Jan 5 '09 at 20:51
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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