更改 tumblr.com/js 的帖子数量
我使用 http://(website).tumblr.com/js 来填充博客在我的网站上,但它只返回我的 tumblr 博客中最近的十篇帖子。我希望能够查找较旧的帖子,例如帖子 11 - 20。有办法做到这一点吗?
谢谢
I'm using http://(website).tumblr.com/js to populate the blog on my website, but it only returns the ten most recent posts from my tumblr blog. I want to be able to look up older posts such as posts 11 - 20. Is there a way to do this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
num
参数设置要返回的帖子数量:但是,不清楚该值可以是多少(对于标准 tumblr API,您无法获取超过 50 个帖子一次)。
如果您想要更大程度的可定制性,您可能需要实际使用 API 并自己显示内容。获取帖子的方法在这里:
http://www.tumblr.com/docs /en/api/v2#posts
并且您想要更改
limit
和offset
参数。You can set the number of posts to return using the
num
parameter:However, it isn't clear how much the value can be (for the standard tumblr API, you can't get more than 50 posts at a time).
If you want a greater degree of customizability, you will probably need to actually use the API and display the content yourself. The method to get posts is here:
http://www.tumblr.com/docs/en/api/v2#posts
And you want to change the
limit
andoffset
parameters.