Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you allow your Facebook Connected users to invite their Facebook friends to your website?

All previous answers on SO are outdated referencing that it was previously possible with fb:multi-friend-selector, but since FBML will soon be deprecated, its not an option worth entertaining.

The only option I see now is to create a canvas app that redirects to my website but I would assume this is not permissible since only Canvas or Mobile apps can use the Requests dialog. I could build my own modal by getting the users friends and then sending them a message directly--also probably not permissible.

Nikolay did a fair assessment here, but was not provided a solid answer. Is Facebook locking down multiple friend invites and leaving only newsfeed posts and likes to webpages?

share|improve this question

2 Answers

I use Social button like recommend and implement it with my site. ref to https://developers.facebook.com/docs/plugins/

share|improve this answer
The Recommend Button does not prompt the user to select specific friends like the Request Dialog. I want a modal that displays all the user's Facebook friends and allows them to select and invite them specifically. – Corey Mar 19 '12 at 23:56
That most likely work on Facebook App. but I don't see that for a website now Facebook still have that option for you. – Ali Mar 20 '12 at 0:20
Sorry Ali, not sure I understand your last response. – Corey Mar 20 '12 at 16:10
Sorry I was trying to tell you that the option you wanted I can only see its available on Facebook App not website. Maybe you should try 'send' button instead because it's similar – Ali Mar 23 '12 at 3:47

So, we looked and it appears you cannot use the Invite Friends modal unless you are a mobile or Facebook canvas app.

We did, however, come up with a solution. Using the Open Graph API (see Publishing) and the publish_stream extended permission, you can post directly to a user's friend's wall. It cannot be a private message (publish_stream does not allow you to change the privacy of the message) but it does allow user's friend to get a notification of the post.

You can see it working in some of our developer's games on www.pokki.com that are supporting our Pokki Games API. We came up with a nice modal that shows the user what the message they'll be posting looks like. This puts the user in control so they can click on their friend in a list of all their FB friends and makes the message more genuine (rather than automatically spamming all their friends with disingenuous messages).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.