Jsonp: Difference between revisions
Jump to navigation
Jump to search
w>Mpolo Fixed jsonp |
m 2 revisions imported |
(No difference)
|
Latest revision as of 08:07, 7 May 2021
Our api can also be called from browser pages directly using JSON Padding. Simply add a format parameter with value jsonp to any call and you will get the json response wrapped in a function called scApiCall.
Parameters
- format: jsonp
- jscb: Optional callback function name or defaults to scApiCall
Example
REQUEST:
https://api.safecreative.org/v2/?component=ztime&format=jsonp
RESPONSE:
scApiCall({"ztime": "1299160340948"})
REQUEST:
https://api.safecreative.org/v2/?component=ztime&format=jsonp&jscb=myFunction
RESPONSE:
myFunction({"ztime": "1299160340948"})