Disqus API 用于从论坛获取帖子列表

发布于 2024-11-19 23:24:48 字数 305 浏览 3 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

奈何桥上唱咆哮 2024-11-26 23:24:48

是的,订单参数默认设置为“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/

情绪失控 2024-11-26 23:24:48

我使用 mootools,你能给我看看该 ajax 请求的 javascript 代码吗?

我的js是:

new Request.JSONP({    
          url :"https://disqus.com/api/3.0/threads/list.jsonp?api_key=9ldXlWCWlsyjMI3qvf03Y8OQCNxvAMklHkrNVcpBKm220XJHXsU0QDdr0TCLM1kz",//&forum=colourasexperience&thread=ident:cae52020",
          callbackKey: 'showMyInfoes', 
          onSuccess: function(jdata){
                //console.log(jdata);       
          } 
}).send();

谢谢

I use mootools, can you show me javascript code for that ajax request?

My js is:

new Request.JSONP({    
          url :"https://disqus.com/api/3.0/threads/list.jsonp?api_key=9ldXlWCWlsyjMI3qvf03Y8OQCNxvAMklHkrNVcpBKm220XJHXsU0QDdr0TCLM1kz",//&forum=colourasexperience&thread=ident:cae52020",
          callbackKey: 'showMyInfoes', 
          onSuccess: function(jdata){
                //console.log(jdata);       
          } 
}).send();

Thanks

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