有一项任务是在网站上显示来自 Instagram 的几张新照片。在https://www.instagram.com/developer/register/注册并收到 ID
但是当我尝试运行代码时......
$.ajax({
url: 'https://api.instagram.com/oauth/authorize/',
dataType: 'json',
type: 'GET',
data: { client_id: '[_my_client_id_]' },
success: function( response ) {
console.log( response );
},
error: function( jqXHR, textStatus, errorThrown ) {
console.log( jqXHR, textStatus, errorThrown );
}
});
</script>
出现错误:
请求的资源上不存在“Access-Control-Allow-Origin”标头。因此不允许访问来源' http://[ domain ].ru '。
请告诉我如何解决这个问题。
通过使用 CURL 在后端编写代码解决了该任务: