小编Kru*_*hah的帖子

无法为Eclipse安装Cobertura插件

当我试图通过eclipse市场在eclipse kepler(java/j2ee版本)中安装cobertura插件时,我收到以下错误消息.

无法完成安装,因为找不到一个或多个必需的项目.正在安装的软件:eCobertura 0.9.8.201007202152(ecobertura.feature.group 0.9.8.201007202152)

缺少要求:eCobertura 0.9.8.201007202152(ecobertura.feature.group 0.9.8.201007202152)要求'org.junit4 0.0.0'但无法找到

eclipse code-coverage cobertura eclipse-kepler eclipse-luna

25
推荐指数
2
解决办法
2万
查看次数

如何在facebook api v2.8中获取页面总页数

https://developers.facebook.com/docs/graph-api/reference/v2.8/object/likes

total_count属性:喜欢的总人数.仅在设置标志summary = true时返回.

我想知道在哪里设置summary = true

我正在使用FB节点模块

以下是我的代码段

FB.api('xxxxx', {
    fields: ['id', 'name', 'likes', 'checkins', 'talking_about_count'],
    access_token: accessToken
}, function(res) {
    console.log(res);
});
Run Code Online (Sandbox Code Playgroud)

facebook facebook-graph-api

4
推荐指数
1
解决办法
1万
查看次数