How do I get most commented posts in disqus?

梦想与她 提交于 2019-12-06 04:53:20

The Disqus API seems not to support this directly. But threads/list has a posts element for each response.

jpmayoral

I was dealing with the same issue and the answer is on:

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

You can set these parameters...and more...

$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);
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!