drexarj / disqus-php
disqus的官方PHP客户端库,包含composer.json文件。
dev-master
2013-11-07 10:47 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-09-24 06:11:19 UTC
README
需要PHP 5.3.0或更高版本!
通过实例化API并使用点分隔法调用方法来使用API。
require('disqusapi/disqusapi.php'); $disqus = new DisqusAPI($secret_key) $disqus->trends->listThreads()
参数(包括重写版本、api_secret和格式的能力)作为关键字参数传递给资源调用。
$disqus->posts->details(array('post'=>1, 'version'=>'3.0'));
所有方法以及一般API使用的文档可以在http://disqus.com/api/找到。