Twitter json 警告
每个人。当我得到这样的推文计数时:
$.getJSON('http://urls.api.twitter.com/1/urls/count.json?url='+ url +'&callback=?',function(data){
return data.count;
});
Google Chrome 会显示此警告:
资源解释为脚本,但使用 MIME 类型 application/json 进行传输。
我尝试了很多选择,但都能找到正确的一个。我怎样才能删除这个警告?
everyone. When I get tweets count like this:
$.getJSON('http://urls.api.twitter.com/1/urls/count.json?url='+ url +'&callback=?',function(data){
return data.count;
});
Google Chrome shows this warning:
Resource interpreted as Script but transferred with MIME type application/json.
I tried a lot of options, but can find right one. How can I remove this warning?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。这是一个 JSONP 请求,因此它必须被解释为脚本。然而,Twitter 将其作为 JSON 提供。因此 MIME 类型不匹配。
You can't. It's a JSONP request, so it has to be interpreted as a script. However, twitter is serving it up as JSON. Hence the MIME type mismatch.