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.

Is there a workaround for the current bug in FQL: http://developers.facebook.com/bugs/266794040030851?browse=search_4f2ff35cf1e521b94883666

The idea would be to request SELECT id FROM user WHERE name="First last" but there is currently a bug in the index such that you can't search by name. I need to find someones facebook id from their full-name, preferably ordered by mutual friends. I've tried the facebook search api but haven't found it reliable.

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

Actually there is an ugly workaround but you have to go outside FQL:

https://graph.facebook.com/search?fields=id,name,link&q=|name|&type=user&access_token=MY_VALID_ACCESS_TOKEN

Using search API this might work, where there is |name| you should just put "Name Surname".

EDIT:

Beware: A facebook app cannot have MORE privileges than a facebook user, ok I'm expanding what I'm trying to say: As you know a facebook user can modify his account settings in order to be NOT visible in public search that means EVERY search will not display that particular user... if the user you are trying to search has this particular setting, then you won't see him, not even through FQL!

This is where a facebook user can set this

share|improve this answer
Yeaaaa I mentioned that I tried that, but it doesn't always give me results. Maybe some of my subjects have privacy settings that don't let their info be accessed by apps...which makes things difficult. No workaround at that point I guess? – JoshDG Feb 7 '12 at 0:33
Are you sure? all the names I tried worked out and i received the correct ID... does your token has all the permissions? Let's say that the name is "Barak Obama" and the access token is "AAA" write me an example of your call – thermz Feb 7 '12 at 8:36
graph.facebook.com/… It works for some people, but not all people. – JoshDG Feb 7 '12 at 15:35
sorry that one cut out because it was a hyperlink i guess. I took out the https: "graph.facebook.com/search?fields=id,name,link&q=barak+obama&type=user&access_to‌​ken=AAA" – JoshDG Feb 7 '12 at 16:06
There is only one kind of users I miss in this search, and I've just added some information to my answer to explain why some user cannot be "searched", hope that helps. – thermz Feb 7 '12 at 18:42
show 2 more comments

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.