Increasing the Reactiveness Using Operators
Learn about JSONP and the usage of the flatMap operator.
We'll cover the following...
What is JSONP?
JSONP, or JSON with padding, is a sneaky technique that web developers came up with to work around browser restrictions when requesting data from third-party domains.
JSONP bypasses these restrictions by loading external content with script tags, instead of the usual XMLHttpRequest ...
Ask