Hello,
In the front-end, I need to to load an API Data Source using “JSONP”
I don’t control this external data source
Hello,
In the front-end, I need to to load an API Data Source using “JSONP”
I don’t control this external data source
That could actually open up some interesting possibilities.
JSONP is a historical technique for making cross-origin requests by using the tag to load JSON data wrapped in a JavaScript function call. While it was useful before the adoption of CORS, it has several security limitations and is not recommended for modern applications.
i defer to the master.
So this could not be used to dynamically inject <script> blocks into app connect from a dynamic source as i mistakenly assumed?
I should perhaps of done more research!