views:

713

answers:

2

It'd be interesting to know who serves JSONP. If you know of a site that does (well-known applications are preferred (e.g., GMail, Facebook, Adsense)), please add it as an answer along with a reference.

APIs supporting JSONP:

+1  A: 

Application making use of JSONP are listed in Wikipedia at http://en.wikipedia.org/wiki/JSON#JSONP

Sandy
I don't see any services which serve JSONP listed there?
Wahnfrieden
Probably referring to "...and is now used by many Web 2.0 applications such as Dojo Toolkit Applications, Google Toolkit Applications and zanox Web Services."
Matchu
+2  A: 

There are a number of sites which serve up JSONP. To the uninitiated, JSONP is just a JSON response wrapped in a callback. This way the JSON response can be loaded in a script tag to avoid same origin policy restrictions.

A short list of APIs which support a JSON wrapped in a javascript callback are as follows. There are likely more.

coderjoe
Added this list to the question above.
coderjoe