JSON callback function in creator api
Hello,
Does the Creator API support the JSON callback function?
I came across Zoho Writer API and this feature is supported (see snippet below) but I wish this same functionality can be implemented for Creator API.
JSONP (JSON Callback) Support
By default, the JSON response cannot be used directly in client-side JavaScript, as XMLHttp does not support cross-domain requests due to security concerns. To get around this cross-domain problem, a simple trick called JSON callback(JSONP) can be used.
On giving a additional query parameter 'callback' to your JSON requests, the response object will be wrapped inside the given callback function name.
The request
http://export.writer.zoho.com/api/private/json/tags/15265000000006067?apikey=[apikey]&ticket=[Ticket]&callback=listTags
will produce the JSON response wrapped in a function call 'listTags' .
thank you!