我想更改Facebook中的通知消息"邀请您玩#34;来自其他东西,同时邀请用户的应用程序。以下是我正在尝试的代码
FB.ui({
method: 'apprequests',
message: 'invite you for my network',
action_type:'askfor',
object_id: '750142945086128',
title:'People waiting to play with you, play now!',
new_style_message: true,
template:'You have people waiting to play with you, play now'
}, function(response){
console.log(response);
});
答案 0 :(得分:1)
这是不可能的,而且你使用了很多不存在的参数。请参阅所有可用文档的文档:https://developers.facebook.com/docs/games/services/gamerequests
您可以更改的是message
:
作为请求的一部分发送的纯文本消息。此文本将显示在请求的App Center视图中,但不会显示在通知宝石上
请求仅适用于游戏,如何邀请用户参与游戏和非游戏请参阅文档:https://developers.facebook.com/docs/apps/faq#friend_invite