我已经做了我能想象到的所有事情来使这个代码工作。我正在使用React。我有一个我在下面发布的端点。我尝试使用fetch然后superagent(也许这很重要),我可以不工作。我得到了这两个错误。仅供参考,我有意“x'd”了userId和访问令牌。
OPTIONS https://api.instagram.com/v1/users/xxxxxxxxx/media/recent/?access_token=xxxxxxxx 405 ()
和
Failed to load https://api.instagram.com/v1/users/xxxxxxx/media/recent/?access_token=xxxxxx: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3000' is therefore not allowed access. The response had HTTP status code 405.
我尝试了this post和this post并实现了他们的解决方案但是返回的对象没有我需要的数据而另一个没有用。但是,当我在浏览器中粘贴完整的URL时,我能够恢复JSON对象。请帮忙。
export const getIGPost = () => dispatch => {
// fetch('https://api.instagram.com/v1/users/xxxxxxxx/media/recent/?
access_token=xxxxxxx',{
// method:'GET',
// dataType:'jsonp',
// crossDomain:true
// })
request
.get(`https://api.instagram.com/v1/users/xxxxxxxxx/media/recent/?access_token=xxxxxxxxx`)
.set('Access-Control-Allow-Origin', 'http://localhost:3000')
.then(res => {
if(res.ok) {
console.log(res.body)
// dispatch(addIGPost(res.body))
}
})
}