有没有人有任何关于如何使用tumblr中的特殊标签设置粘贴帖子功能的线索?我知道Single A主题有这个功能,但没有文档,我试图避免解码它。有没有人这样做过?
答案 0 :(得分:3)
您可以选择为帖子使用特定标签,例如“粘”'然后仅在标记为Sticky的帖子上运行API调用,限制为1(可选)。
http://api.tumblr.com/v2/blog/[YOURBLOG].tumblr.com/posts/?api_key=[YOURAPIKEY]&limit=1&tag=sticky
有关API的更多信息,请访问:http://www.tumblr.com/docs/en/api/v2#posts
API调用在JS中看起来像这样:
$.ajax({
url: '[URL_FROM_ABOVE]&jsonp=?',
dataType: 'jsonp',
type: 'get',
success: function(data){
// do something with your data
}
});