Any public api I can check jsonp ajax call?

Besides Twitter, I wonder if anyone knows of any public web API with which I can try ajax call using jsonp protocol?

+4
source share
1 answer

jsfiddle provides an echo tool that is quite useful: http://doc.jsfiddle.net/use/echo.html

JSONP url: http://jsfiddle.net/echo/jsonp/

Data must be provided through GET. jsFiddle will answer all the data in the request. It uses a URL with a host and protocol since it is loaded from a different domain. callback and delay are not returned.

jsonp delay function callback name optional; its time in seconds after which data should be returned

+10
source

All Articles