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.

Are there any built-in "Group add request" actions that come with the facebook graph API? Like the built-in Like action? That happens with a users request. I would like to do this from an external website, just like the Like action works

For example the user is active in a forum, where different categories have their own facebook group page, and they would like to access the group without having to actually log on facebook and make the request.

share|improve this question
Thanks, Jay Gilford – Bujanca Mihai Mar 1 at 22:12

1 Answer

up vote 2 down vote accepted

From the docs:

Invite User

Applications can invite users to a group by issuing a POST request to /GROUP_ID/members/USER_ID with an app access_token.

Note that user being invited must be a user of the application. The user will be sent a notification saying that they have been invited to the group. The notification will take them to the group page. Users can only be invited once. Subsequent invites will fail.

So you the user will have to authorize your app, and then you can do it.

share|improve this answer
Thanks, that is what I was looking for. The user will authorize the app since it would be interested in getting access to groups easier – Bujanca Mihai Mar 1 at 22:17
Please accept answers that solve the problem, so that others can find solutions more easily. – Tommy Crush Mar 1 at 22:18
I will accept when I am allowed to, thank you. I need to let 15 minutes until I can accept an answer – Bujanca Mihai Mar 1 at 22:19
Didn't know that! Guess we all learn something each day! :P – Tommy Crush Mar 1 at 22:21

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.