Skip to content

JSONP

JavaScript callbacks (JSONP) can be enabled by adding the parameter callback with the desired JS-method name as value. JSONP only works for GET calls with JavaScript content type.

Example

GET http://base/1/entry/1?callback=test

This will wrap the whole response into a JavaScript method with the given name.