CORS
You might say
The browser blocked this page's API request. Check whether CORS is not allowing this site.
CORS is the browser security mechanism that lets a page read a cross-origin response only after the server explicitly permits it.When a page on
app.example.com requests api.example.com, the server must allow that page origin in its response before the browser gives the data to script. It protects cross-origin reads in browsers; the server still decides whether an API can be called and whether a user has permission.Cross-Origin Resource Sharing
Further reading