我正在尝试在Angular 2中进行JSONP
调用,但每次我收到此错误时都会:
拒绝执行来自' https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id=xyz&state=987654421n&callback=ng_jsonp.__req0.finished'的脚本因为它的MIME类型(' text / html')不可执行,并且启用了严格的MIME类型检查。
下面是我的角度代码:
let header = new Headers({ 'Content-Type': 'application/json' });
return this.jsonp.get('https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id=xyz&state=987654421&callback=JSONP_CALLBACK', {
headers: header
}).map(response => <string[]> response.json()[1]);