有没有办法在disqus API中获取用户发布的评论数量。
我查看了他们的公共/ API数据,发现用户中有一个名为numPosts的字段。
但无法使用disqus SSO获取如何为在我的网站上注册的用户检索它。
答案 0 :(得分:1)
可以通过拨打“https://disqus.com/api/3.0/users/details.json”url
来检索它响应包含字段numPosts
var disqusPublicKey = "<yourkey>";
var disqusShortname = "<shortname>";
$.ajax({
type: 'GET',
url: 'https://disqus.com/api/3.0/users/details.json',
data: { api_key: disqusPublicKey, user:"<userid>"},
cache: false,
dataType: 'jsonp',
success: function(response) {
console.log(response);
}
});
有关详细信息,请参阅:https://disqus.com/api/docs/users/details/