vote up 2 vote down star
2

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

flag

4 Answers

vote up 5 vote down check

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

link|flag
vote up 4 vote down

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|flag
vote up 1 vote down

AFAIK they use IFRAMEs.

link|flag
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 at 12:40
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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