Xavier
Xavier

Reputation: 9049

Is it possible to use the Disqus API to get comments from a specific url?

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

Upvotes: 12

Views: 8754

Answers (2)

aletede91
aletede91

Reputation: 1166

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]

Upvotes: 1

Jamie R Rytlewski
Jamie R Rytlewski

Reputation: 1221

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...

Upvotes: 22

Related Questions