我试图通过 Disqus API 解析线程消息但没有成功。这是我在 php 脚本中的调用:
$endpoint = 'http://disqus.com/api/3.0/threads/details.json?api_key='.urlencode($apikey).'&forum='.$shortname.'&thread='.urlencode($thread);
我得到的是一个包含信息但没有发布消息的正文的 .json。
如果我将方法更改details.json
为list.json
.
如果我打电话listThreads.json
,我会得到一个带有以下行的 .json
{"code": 3, "response": "Endpoint resource not valid"}
如果我打电话listPosts.json
,我会得到
{"cursor": {"prev": null, "hasNext": false, "next": "0:0:0", "hasPrev": false, "total": null, "id": "0:0:0", "more": false}, "code": 0, "response": []}
(本帖无评论)