facebook 分享好友 对方无法展示。

使用cocos creator对接facebook,分享截屏给好友后,好友只能显示一个点,并且点不开链接,
哪位ccc友做过或者遇到过的,麻烦给予帮助。
对方好友看到的是这样的:

我把代码也粘贴写,有需要的,可以参考:

// 炫耀一下
Partner.doFlaunt = function(target, callback) {
console.log(“facebook doFlaunt”);
var base64Picture = target;// Partner.getImgBase64(target);
FBInstant.context
.chooseAsync({
filters: [‘NEW_CONTEXT_ONLY’],//[‘NEW_CONTEXT_ONLY’, ‘INCLUDE_EXISTING_CHALLENGES’ , ‘NEW_PLAYERS_ONLY’]
minSize: 3,
})
.then(function() {
FBInstant.updateAsync({
action: ‘CUSTOM’,
cta: ‘Join The Fight’,
image: base64Picture,
text: {
default: ‘Let us play game together’,
localizations: {
en_US: ‘Let us play game together’,
zh_CN: ‘来玩游戏吧伙计!’,
}
},
template: ‘VILLAGE_INVASION’,
data: { myReplayData: ‘…’ },
strategy: ‘IMMEDIATE’,
notification: ‘NO_PUSH’,
}).then(function() {
console.log(‘Message was sent successfully’);
// closes the game after the update is posted.
FBInstant.quit();
}).catch(function(err){
console.log(err);
});
});
}

已经解决,没有添加白名单,哈哈

这个截图有代码么