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.

I am already making the user give the permission for the application and it is already attending the user to a certain event. Now I need to make the user "enter" a community.
I guess that would be it "Liking" the page, right?

How can I do that?
using the /me/likes I get the list of pages that it liked, and from my own profile I can see the page that I need to make other people like.

Thanks!
Joe

share|improve this question

1 Answer

up vote 0 down vote accepted

You can and you can't.

Its easily done by this php code:

 $facebook = FacebookInit();
 $facebook->api("/$InterestId/likes", "post", 
    array("access_token" => $AccessToken));

but facebook isn't allowing applications to "Like" in the user's behalf.
see http://www.insidefacebook.com/2010/10/08/causes-whitelisted-like-pages-2/

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.