-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Description
I'm having trouble when hitting an endpoint that uses jsonp. (tumblr, in my case).
Same Origin is telling me though shall not pass, though.
This works
var url = api_endpoint + '&callback=?'
return $.getJSON(url).then(function(payload){
return payload;
})
But this doesn't
var url = api_endpoint + '&callback=?'
return ic.ajax.raw(this.get('endpoint')).then(function(payload){
return payload
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels