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 trying execute next FQL query

SELECT uid FROM user WHERE name='Vovka'

and getting
(#604) Your statement is not indexable. The WHERE clause must contain an indexable column. Such columns are marked with * in the tables linked from http://developers.facebook.com/docs/reference/fql"

but earlier this kind of query worked fine, and there http://developers.facebook.com/docs/reference/fql/user/ the name column also marked as indexable.

Tell me please what I'm doing wrong?

Thanks, Volodymyr.

share|improve this question

2 Answers

A workaround is to use the Graph API

$facebook->api("/search?q=".urlencode($name)."&type=user");
share|improve this answer

This is a currently (2010-10-29) open bug in Facebook's bug tracker - see https://developers.facebook.com/bugs/266794040030851 for the status

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.