如何在disqus中获得评论最多的帖子?

时间:2012-07-25 09:01:13

标签: php drupal disqus

我正在研究大多数评论帖子的disqus api,但它让我无处可去。 有人可以与我分享如何获得线程/帖子有序评论计数?像这样:

listPosts.json?orderby=comment_count&order=desc

2 个答案:

答案 0 :(得分:9)

我正在处理同样的问题,答案是:

http://disqus.com/api/docs/threads/listPopular/

您可以设置这些参数...以及更多...

$api_key = 'your_public_key';
$interval = '90d';
$forum = 'your_website_shortname';
$limit = 5;

$url_call = "http://disqus.com/api/3.0/threads/listPopular.json?api_key=" . 
            $api_key . "&forum=" . $forum . "&interval=" . 
            $interval . "&limit=" . $limit;

$get_contents = file_get_contents( $url_call ); 

$call = json_decode($get_contents);

答案 1 :(得分:1)

Disqus API似乎不直接支持这一点。但threads/list每个posts都有一个response元素。