How can we get Disqus comment count for a specific page using Disqus PHP?
require_once('disqusapi/disqusapi.php');
$disqus = new DisqusAPI('sec_key');
Above snippet can be used to initialize the API object. What method to be called if a I have URL of a page in my website?
All my search leads to JavaScript samples to get comment count.
Thanks.
forums/listPosts.json
becomes$disqus->forums->listPosts()
, and so on. – Yoshi