用户在 disqu 中发表的评论数
Number of comments posted by a user in disqus
有什么方法可以获取用户在 disqus 中发表的评论数 API。
我查看了他们的 Public/API 数据,发现 User 中有一个名为 numPosts 的字段。
但无法了解如何为使用 disqus SSO 在我的网站上注册的用户检索它。
可以通过调用以下方式检索:“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);
}
});
有什么方法可以获取用户在 disqus 中发表的评论数 API。
我查看了他们的 Public/API 数据,发现 User 中有一个名为 numPosts 的字段。
但无法了解如何为使用 disqus SSO 在我的网站上注册的用户检索它。
可以通过调用以下方式检索:“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);
}
});