Disqus API 用于从论坛获取帖子列表
我正在使用 Disqus API 来获取特定论坛的帖子列表。 我用来获取帖子的网址是 - 'http://disqus.com/api/3.0/forums/listPosts.json' 在 disqus api 文档中,他们提供了可以传递到上述 url 的参数。其中since为1,可用于获取指定日期之后的所有帖子。 在 api 文档中,他们提到我们可以使用 Unix 时间戳(或 ISO 日期时间标准)作为“since”参数的值。 我尝试过这两种类型的值,但它给了我所有的帖子,即从不应用因为约束。
您能帮我了解如何使用“since”参数吗?
谢谢 !!
I am using the Disqus API for getting the list of posts for a particular forum.
The url that i am using to get the posts is -
'http://disqus.com/api/3.0/forums/listPosts.json'
In the disqus api docs they have provided the parameters that can be passed to the above url. Out of which 'since' is one, which can be used to get all the posts after the specified date.
In the api docs they have mentioned that we can use Unix timestamp (or ISO datetime standard) as the value for the 'since' param.
I have tried with both types of values but it gives me all the posts i.e. the since constraint is never applied.
Can you please help me out to know how to use 'since' param.
Thanks !!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,订单参数默认设置为“desc”...您可以通过此链接获取更多信息:http://disqus.com/api/docs/forums/listPosts/
yes the order param is bydefault set to 'desc'...you can get more info on this link: http://disqus.com/api/docs/forums/listPosts/
我使用 mootools,你能给我看看该 ajax 请求的 javascript 代码吗?
我的js是:
谢谢
I use mootools, can you show me javascript code for that ajax request?
My js is:
Thanks