I am trying to make a JSONP call to the following API: https://api.openrates.io/latest
My service code:
this.http
.jsonp<Response>("http://api.openrates.io/latest", "callback")
.subscribe(res => console.warn(res));
From the DevTools Network Tab I can see that the request was successful and I am getting a JSON object back:
However I get the following exception and I cannot subscribe to the response properly:
Is it a problem in the way I make the JSONP call? Or is the server answer the issue (JSON and not a callback)? For sake of completeness I use Angular 7 and Angular CLI.

