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

當我點擊並打開請求窗口時,我可以看到消息是正確的。 但收到我的請求的人顯示「xx向您發送了請求。」 這是錯的嗎? 或者它會顯示在其他任何東西?關於Facebook的apprequest消息

回答

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) { 

雖然我會說不依賴它,因爲它是一個無證參數。順便說一句,我也使用它無論如何

+0

哦,非常感謝你! –

+0

嗨,你有什麼new_style_message截圖:真的嗎? – Dean

+0

[this](http://i.imgur.com/EEp2P.png)發送方式通知。 – Smita