0

I want to create an entrance app for some events at a congress. Only users which liked our company-facebook page before should be allowed to enter.

I was reading around the last days, that it is not possible (only if the user logged in with facebook connect on our site) to see via the Graph API, which users liked our page? We would have the email adress (over an external registration form), but not the FacebookID.

I'm wondering if there are solutions outside, which i didn't found...

BvuRVKyUVlViVIc7
  • 11,641
  • 9
  • 59
  • 111

1 Answers1

0

It's not possible to get the list of users who have liked your page.

But since you are having the email_ids of the users who have liked the page, you were left with one thing - searching users with email_id BUT unfortunately this has been disallowed by facebook. See here. It says-

The ability to pass in an e-mail address into the "user" search type was removed on July 10, 2013. This search type only returns results that match a user's name (including alternate name).

For future ref, if you have some application, you can query for /me and save their facebook ids.

Sahil Mittal
  • 20,697
  • 12
  • 65
  • 90