7

So I have a huge list of phone numbers and want to find facebook users for each of the phone numbers if they exist. There are tons of iphone apps, etc that pull in your contact list and match them to facebook accounts. Any ideas on how I can do this?

Thanks in advance.

Jim

BigPoppa
  • 1,205
  • 2
  • 13
  • 21
  • What does the API say? – admdrew Dec 04 '13 at 21:43
  • Nothing. I looked at the search sip and the user search says ou name. Also looked at fql. To be clear I don't want the number of the logged in user rather need to find a user based on a phone number – BigPoppa Dec 05 '13 at 00:44
  • Did you ever find an answer to this question? – sparkdoo May 15 '15 at 04:01
  • The way it should be done, it´s by doing a search, using the type user. https://graph.facebook.com/search?q=daniel&type=user but you cant type phone number instead characters, don´t understand why. Facebook limitations crap – Daniel Apr 11 '17 at 17:04

1 Answers1

-1

You will need to call the API 'login()' function with the permission "user_mobile_phone". You can then retrieve it as usual.

Here is the FB dev post and examples of doing this:

http://developers.facebook.com/blog/post/2011/01/14/platform-updates--new-user-object-fields--edge-remove-event-and-more/

  • According to that it was removed also I need to find a user based on phone which is different I think – BigPoppa Dec 05 '13 at 00:55
  • Unfortunately, you cannot get a FB user's phone number unless they authorize your app to do so. There are some users that have their phone shown as public information, and I believe a lot of systems which do what you are seeking just 'scrape' that data from the user's About page. It's trivial for Google, who already indexes all of the Facebook pages for search, to associate this information for Android contacts. – Coder101101010 Dec 05 '13 at 19:41
  • Thank you. This I understand. My question and perhaps I was not clear is this. I have a cell phone number, say, 5555551212. I want to do a facebook search and find the user (if public) who has that phone number. I dont need to see the number, just find the user tied to that phone number. – BigPoppa Dec 06 '13 at 02:06