How to programmatically invite Facebook friends on a website

一个人想着一个人 提交于 2019-12-04 17:13:08

问题


The functionality that I need is to show a list of Facebook friends to the user on the website page with custom design, where the user can select some of them and send invites.

In API v2.0 it's possible to get a list of friends this way:

FB.api('/me/taggable_friends', function (response) {
     ...
});

But it doesn't return real users' ID that I need for invites with the next function call:

FB.ui({
    method: 'apprequests',
        message: invite_text,
        to: 'user_id_1, user_id_2'
    }, function (response) {
        ...
    }
);

How can I get these real IDs? Or how to resolve this functionality in another way? Because all the answers that I found were connected with games that don't fit me.

I need a full list of friends. Not just that already use my website (analog of the invitable_friends in-game section).


回答1:


You are not allowed to use taggable_friends for inviting them, obviously it is for TAGGING friends and you only get a tagging token.

There is invitable_friends, but:

The invitable_friends API is only available for games that have a Facebook Canvas app implementation using version 2.0 of the Graph API.

(https://developers.facebook.com/docs/games/invitable-friends/v2.1)

I am afraid what you want to achieve is not possible. The proper way to invite friends to your website is to use the Send Dialog: https://developers.facebook.com/docs/sharing/reference/send-dialog

You can include one User ID in the "to" parameter. Of course it must be a User who authorized your App too, you can get those with /me/friends. Or better: Just open the Dialog and let the User select on his own.



来源:https://stackoverflow.com/questions/25547404/how-to-programmatically-invite-facebook-friends-on-a-website

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