0

I'm making the Facebook app whit JavaScript SDK, and I need user likes permissions to make a like gate. When I go to my app for the first time I get the popup whit permissions and big red alert: "The following permissions have not been approved for use and are not being shown to people using your app: user_likes " When I submit my permissions for approvement they reject me... Is there another way to make a like gate?IMG

  • 1
    I think the real issue here might be "why are they rejecting it?" – Paul S. Jun 01 '14 at 19:25
  • You are not allowed to use user_likes for like-gating. You can do like-gating in page tab apps using the liked-value in signed_request – WizKid Jun 01 '14 at 19:41

1 Answers1

0

If you're having a Page Tab App, then use the signed_request data. If not then you'll need the permission to be able to access the User's likes.

Have a look at my answer here: perl Facebook::Graph API check if user likes page

Community
  • 1
  • 1
Tobi
  • 31,405
  • 8
  • 58
  • 90