json 获取 tumblr feed 错误,未捕获语法错误:意外标记 <

发布于 2024-12-08 15:11:42 字数 516 浏览 0 评论 0 原文

这是我在这里发布的第一个问题,所以如果我使用了不好的形式,我提前道歉。

我将我的 tumblr 博客文章添加到我网站的旁白部分。今晚我的页面上没有显示提要。 Chrome 显示此错误:

"Uncaught SyntaxError: Unexpected token < hearthescene.tumblr.com:1"

这是显示我的 json 请求的代码片段:

$.getJSON(
    "http://hearthescene.tumblr.com/api/read/json?callback=?", 
    function(data) { 
        ...formatting the data for my site....
    }
);

几天内我实际上没有在网站上编辑任何内容。我想知道 tumblr 是否提高了安全性,我需要进行一些 OAuth 身份验证或提供 api 密钥?

任何帮助将不胜感激。提前致谢。

This is my first question posted here, so I appologize ahead of time if I use bad form.

I have my tumblr blog posts fed into the aside section of my website. Tonight the feed is not displaying on my page. Chrome shows this error:

"Uncaught SyntaxError: Unexpected token < hearthescene.tumblr.com:1"

Here's a snipet of code showing my json request:

$.getJSON(
    "http://hearthescene.tumblr.com/api/read/json?callback=?", 
    function(data) { 
        ...formatting the data for my site....
    }
);

I haven't actually edited anything on the site in a couple days. I was wondering if tumblr has upped the security and I need to do some OAuth authentication or supply an api key?

Any help would be greatly appreciated. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浅唱々樱花落 2024-12-15 15:11:42

我需要添加 api_key,如下所示:
$.getJSON("http://hearthescene.tumblr.com/api/read /json?/?api_key={my_api_key}&callback=?",

I needed to add the api_key as such:
$.getJSON("http://hearthescene.tumblr.com/api/read/json?/?api_key={my_api_key}&callback=?",

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