我正在使用新的JavaScript SDK使用应用请求对话框向朋友发送应用请求。我使用的代码如下: -
FB.ui({
method : 'apprequests',
display : 'iframe',
to : '',
data : '',
title : 'Invite your friends to use Connect.',
message : 'Hi, I am a friend of this site and I think you should join me! Register now to join our friendly group.',
max_recipients : '5',
},
function(response) {
if (response) {
alert('Post was published.');
}
else
{
alert('Post was not published.');
}
});
现在,如果我使用此代码发布请求,“Apps and Ganmes”旁边显示的计数确实会增加,但是当我点击“应用和游戏”以查看从我的网站发送的请求时,它不会显示在列表中。此外,在此功能的sdk中,有人提到通过此代码发送应用程序请求也会产生通知,但这也不起作用。
但是,当oauth2未激活时,此代码曾用于工作。所以,如果有人能解决这个问题,请告诉我,因为我需要尽早解决。