English 中文(简体)
从Tumblr通过jquery调出最新员额
原标题:retrieving latest post from Tumblr via jquery

我试图将Tumblr博客纳入一个网站。 具体地说,我要显示最新的文本。

我已经看过Tumblr AP,一切都非常容易,但我无法工作。

According to the documentation for Tumblr API v2 (http://www.tumblr.com/docs/en/api/v2) this is the call I need:

http://api.tumblr.com/v2/blog/blog.tumblr.com/posts/text?api_key=KEY&limit=1 and if I put it in my browser I get what I want.

然而,如果我尝试用下文所述分类1.7.1收回其职务名称:

$.getJSON( http://api.tumblr.com/v2/blog/blog.tumblr.com/posts/text?api_key=<KEY>&limit=1 , function(data) {
  console.log("data.posts[0].title");
});

我得到空洞的答复。

我失踪了吗?

感谢您的帮助。

SIG

最佳回答

页: 1 Same-Origin-Policy

http://www.tumblr.com/docs/en/api/v2“rel=“nofollow”>documentation ,载于Response Format

问题回答

安德烈亚斯给我的解决办法是行之有效的。 我将法典改为JSONP。 现在我能够从肿瘤中获取数据。

$.ajax({
    type: "GET",
    url: "http://api.tumblr.com/v2/blog/blog.tumblr.com/posts/text?api_key=<KEY>&limit=1",               
    dataType: "JSONP",
    success: SuccessCallbackFunction,
    error: ErrorCallbackFunction,
});




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签