Not getting JSON response from Twitch.tv api

北战南征 提交于 2019-12-25 00:15:16

问题


var app = angular.module('twitchTV',[]).config(function($sceDelegateProvider) {
  $sceDelegateProvider.resourceUrlWhitelist(['**']);
});

app.controller('myCtrl',["$scope","$http", function($scope, $http,){
    var api = 'https://wind-bow.gomix.me/twitch-api/ESL_SC2';

    $http.jsonp(api,{jsonpCallbackParam: 'callback'}, {
      headers: {
        'Access-Control-Allow-Origin' : '*',   
        'Content-Type': 'application/json'
      }
    }).then(function(data) {
      console.log(data.data);
    });
}]);

I am not able to get the desired response from the twitch tv api.

来源:https://stackoverflow.com/questions/47979394/not-getting-json-response-from-twitch-tv-api

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!