ほとんどのコメント付きの投稿についてdisqus apiを調べていましたが、どこにも行きません。スレッド/投稿の順序付けされたコメント数を取得する方法を教えてもらえますか? このようなもの:
listPosts.json?orderby=comment_count&order=desc
私は同じ問題を扱っていましたが、答えは次のとおりです。
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);
Disqus APIはこれを直接サポートしていないようです。しかし、それぞれthreads/list
のposts
要素があります response
。