l have created an api with kimonolabs and am trying to make a request from that endpoint.
this doesnt seem to work...
.controller('maritimCtrl', ['$scope','$http', functio($scope, $http){
$http.get('http://www.kimonolabs.com/api/c7exfow8?apikey=xVEo5Biu1o3X3AFxId440GGc2WvoCrnk').then(function(resp) {
console.log('Success', resp);
console.log(resp.data);
}, function(err) {
console.error('ERR', err);
})
}]);
any ideas