Facebook通知中的自定义消息无效

时间:2014-03-14 10:08:49

标签: facebook notifications apprequests

我在这里经历了很多问题并尝试了所有答案但没有成功。

FB.ui({
    method: 'apprequests',
    new_style_message: true,
    message: "is bringing you to the UPicnic !",
    display: "iframe"
},somefunction);

我已经尝试了new_style_message : true自定义消息,我已经看到了少数用户的回答,并在facebook对话框请求文档中提到过。

仍然,我没有收到自定义消息。请帮帮我。

提前致谢

1 个答案:

答案 0 :(得分:0)

new_style_message不是“请求对话框”中的有效参数。

请参阅此处的文档:https://developers.facebook.com/docs/reference/dialogs/requests/#redirect

您可以在message参数中编写任何cutom消息。

FB.ui({
   method: 'apprequests',
   message: "this is my custom message",
   display: "iframe"
},somefunction);

<小时/> 直接网址

https://www.facebook.com/dialog/apprequests?app_id=262546773892944&message=custom%20message&%20%20redirect_uri=http://localhost/fb_test/

相关问题