FB.AppRequest does not work

帅比萌擦擦* 提交于 2020-01-25 08:10:06

问题


I am trying to send App Requests with Facebook SDK on Unity. Everything is alright until I press 'send'. It also returns a success but nothing happens in my friends' facebook :S

    FB.AppRequest(message, null, null, null, null, null, title,
        (result) => {
            Debug.Log(result.RawResult);
        }
    );

As you can see, I am able to show the friends list and select the ones who will receive the request. After pressing send, it returns a success(I have put the Xs intentionally). However, nothing happens on my friend's facebook.

{"to":"10XXXXXXXXXXXXXX33","request":"161XXXXXXXXXXXXXX89","callback_id":"4"}


回答1:


I have assigned my friend receiving the request as administrator so that he was able to get the notification. Otherwise, he does not get anything because the facebook app is currently in development mode.



来源:https://stackoverflow.com/questions/47263438/fb-apprequest-does-not-work

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!