我有提示要求玩家将他的名字发送到Facebook画布上的游戏排行榜。
var playerName = prompt("You earned "+score.toString()+" points. Please enter your name:", "player");
$.get("scoreboard.php",{"player": playerName, "score": score.toString()})
.done(function(data){console.log(data);});
我应该实现什么代码才能从Facebook自动获取他的名字并发送到我的数据库?
我已经实施了:
function getMe(callback) {
FB.api('/me', {fields: 'id,name,first_name,picture.width(100).height(100)'}, function(response){
if( !response.error ) {
friendCache.me = response;
callback();
} else {
console.error('/me', response);
}
});
但我如何在playerName ????
上检索此信息答案 0 :(得分:0)
simple:var playerName = friendCache.me.first_name;