首页 > 解决方案 > Facebook Instant Games 不提供玩家照片

问题描述

我正在使用此代码获取玩家照片,但响应总是像这样的标准照片网址:https ://platform-lookaside.fbsbx.com/platform/instantgames/profile_pic.jpg?igpid=2740003129452224&height=256&width=256&ext=1585811827&hash=AeSTzH9PG8LqK8se

这个编码有什么问题?

window.onload = function() {

FBInstant.initializeAsync().then(function() {

    FBInstant.startGameAsync().then(function() {

        FBInstant.player.getSignedPlayerInfoAsync().then(function (result) {

            console.log(FBInstant.player.getPhoto());

        });

    });

});

}

标签: facebookfacebook-graph-apifacebook-instant-games

解决方案


推荐阅读