我还想仅在可能的情况下使用 javascript 客户端脚本来执行此操作。
最佳答案
你总是可以将 jQuery 用于 AJAX 调用,因为 Disqus 上的几乎所有内容现在都可以使用。
首先,您必须使用 (http://disqus.com/api/docs/threads/list/) 获取线程 ID:
http://disqus.com/api/3.0/threads/list.json?api_key=API_PUBLIC_KEY_HERE&forum=[shortforumid]&thread=link:[链接]
最重要的部分是 thread= 将 link:[link] 作为链接:表示我们正在使用 URL。
获得线程ID后,您必须访问(http://disqus.com/api/docs/posts/list/):
http://disqus.com/api/3.0/posts/list.json?api_key=API_PUBLIC_KEY_HERE&thread=[thread id]
提醒一下,您不需要放入括号...
关于javascript - 是否可以使用 Disqus API 从特定 url 获取评论?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4755278/