我正在尝试使用 FBinstant.chooseAsync 方法向我的 Facebook 好友发送游戏请求。但是没有请求发送给我的朋友,并且在调用此方法后我在回调时没有收到任何数据。
这是我的游戏代码-
FBInstant.initializeAsync() .then(function() {
console.log("FBInstant.initializeAsync complete");
console.log("FBInstant.startGameAsync complete");
FBInstant.startGameAsync().then(function() {
console.log("FBInstant.startGameAsync complete");
console.log("FBInstant.startGameAsync context : " + FBInstant.context.getID());
FBInstant.context.chooseAsync() .then(function (e) {
console.log("FBInstant.context.chooseAsync complete");
console.log(e);
});
});
});