我遇到了麻烦...问题是,在Facebook上,如何返回针对我的应用/游戏发布的所有分数列表?
这是我的代码:
function lbInit() {
FB.api('/' + globalFBObj.appID + '/scores', 'get', function(response) {
console.log("Getting scores...");
console.log(response);
//pass array into Lboard() and construct the leaderboard
console.log("Creating the Leaderboard...");
Lboard(response.data);
});
}
但唯一返回的是当前用户的发布得分......
我正在申请以下权限: 范围:'email,publish_actions,user_games_activity,friends_games_activity'