私は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