是否可以使用 Disqus API 获取特定网址的评论?

发布于 2024-10-13 00:25:49 字数 44 浏览 3 评论 0原文

我还想仅在可能的情况下使用 javascript 客户端脚本来执行此操作。

I would also like to do this using javascript client-side scripting only if possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦晓ヶ微光ヅ倾城 2024-10-20 00:25:49

您始终可以使用 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:[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=[线程id]

只是提醒一下,您不需要放在括号中...

You could always use jQuery for the AJAX calls as almost everything on Disqus is now get.

First you would have to get the thread id from using (http://disqus.com/api/docs/threads/list/):

http://disqus.com/api/3.0/threads/list.json?api_key=API_PUBLIC_KEY_HERE&forum=[shortforumid]&thread=link:[link]

The most important part is for the thread= to have link:[link] as the link: says we are using a URL.

After you get the thread id, you will have to visit (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]

Just as a reminder, you do not need to put in the brackets...

孤独患者 2024-10-20 00:25:49

接受的答案包括对 Disqus API 的 2 次不同调用,为了避免使用限制,您只能使用 1 次调用通过 url 获取评论列表:

http://disqus.com/api/3.0/posts/list.json? api_key=API_PUBLIC_KEY_HERE&forum=[shortforumid]&thread=link:[link]

The accepted answer consists in 2 different calls to Disqus API, to avoid the limit usage you could use only 1 call for obtains a list of comments by an url:

http://disqus.com/api/3.0/posts/list.json?api_key=API_PUBLIC_KEY_HERE&forum=[shortforumid]&thread=link:[link]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文