确认从应用到用户的Facebook收件箱的消息

时间:2014-05-06 10:32:08

标签: facebook-graph-api

我正在实施投票​​申请。我想从我的应用程序向已完成投票的用户发送消息,并感谢您提供一些额外的消息。我们可以使用哪种api实现这一点而无需用户交互(从后端消息应该转到用户)。 Facebook中允许使用dircet消息吗?

它与以下功能相同,但我需要的是没有用户交互:

function facebook_send_message(to) {
FB.ui({
    app_id:'xxxxxxxx',
    method: 'send',
    name: "sdfds jj jjjsdj j j ",
    link: 'https://apps.facebook.com/xxxxxxxaxsa',
    to:to,
    description:'sdf sdf sfddsfdd s d  fsf s '

    });
}

1 个答案:

答案 0 :(得分:0)

您可以尝试 Facebook App Notification API https://developers.facebook.com/docs/games/notifications

事件虽然处于测试状态,但效果很好。我用过这个是我的项目之一。

POST /{recipient_userid}/notifications?access_token= … &template= … &href= …

希望这有帮助。