1
FB.ui( {
    method: 'apprequests',
    message: "hi, come and play with me.",
    filters: ['app_non_users'],
    frictionlessRequests : true,
    to: toids.join(',')
},
function(response) {

当我单击并打开请求窗口时,我可以看到消息是正确的。但是收到我请求的人却显示“xx给你发了一个请求”。 有什么问题吗?或者它会显示在其他任何东西上?

4

1 回答 1

1

添加一个参数new_style_message:true,它有时会起作用。我的意思是通知就像hi, come and play with me. 那么您的 apprequest 功能将如下所示:

FB.ui( {
    method: 'apprequests',
    message: "hi, come and play with me.",
    filters: ['app_non_users'],
    frictionlessRequests : true,
    to: toids.join(','),
    new_style_message:true
},
function(response) {

虽然我会说不要依赖它,因为它是一个未记录的参数。顺便说一句,我也使用它

于 2012-10-31T09:41:36.843 回答