up vote 7 down vote favorite
4
share [g+] share [fb]

How does Google's API make cross-domain requests back to Google, when it's on your website?

link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

<script> tags work cross-domain. See also: JSONP

link|improve this answer
feedback

They get around it by dynamically injecting script tags into the head of the document. The javascript that is sent down via this injection has a callback function in it that tells the script running in the page that it has loaded and the payload (data).

The script can then remove the dynamically injected script tag and continue.

link|improve this answer
feedback

AFAIK they use IFRAMEs.

link|improve this answer
1  
I Agree with you. Google should be using something similar to this, as they do a Post to their Calendar service using the Javascript library which is not possible in JSONp. +1 – Ramesh Sep 11 '09 at 12:40
1  
You can't get any data back from a cross-domain iframe though - you can post data, but you can't see any result. Since you can use GET arguments with jsonp which allows you to send the same thing as post (except files or large quantities of data), they almost certainly don't use iframes – tobyodavies Nov 26 '10 at 2:10
iframes are the 2nd stupidest invention ever. – Dhaivat Pandya Oct 18 '11 at 21:29
feedback

Another possibility is to use the window.name transport as described for the dojo framework here

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.