Facebook FB模块的发送邀请对话框

做Facebook小游戏的时候,需要用到FB模块中的一个功能,
//发起挑战
onAppRequests () {
if (typeof FB === ‘undefined’) return;
FB.ui({
method: ‘apprequests’,
message: ‘Hello,Can you get more scores than me?’,
}, (response) => {
cc.log(‘发送挑战’);
});
弹出上图界面,发送邀请后,邀请被Facebook的应用消息过滤机制过滤了,是不是需要在后台设置什么?