Twitter json 警告

发布于 2024-11-05 20:01:19 字数 332 浏览 0 评论 0原文

每个人。当我得到这样的推文计数时:

$.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尸血腥色 2024-11-12 20:01:19

你不能。这是一个 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文