0
我正在研究一些使用auth0和IONIC的測試應用。我已經建立了auth0連接,現在我想這段代碼來獲得用戶數據:從instagram獲取所有用戶照片
$http({
method: 'GET',
url: 'https://api.instagram.com/v1/users/self/?access_token='+store.get('accessToken')
}).then(function successCallback(response) {
console.log(response);
}, function errorCallback(response) {
console.log(response);
});
我得到400訪問控制允許來源的錯誤。有人可以告訴我該怎麼辦?我不能說互聯網會幫助我在找anythink ...
http://stackoverflow.com/questions/3076414/ways-to-circumvent-the-same-origin-policy – Hitmands