facebook graph api - FQL Query capabilities -


just getting started fql , graph api.

is there way run query performs same kind of search on facebook graph search?

for example, user logs in fb. wants find users named lisa smith live in florida (regardless of connection her). can app search users in florida first name "lisa" , last name "smith", without relating query specific userid?

refer to: http://developers.facebook.com/docs/reference/api/search/

search available via graph api, there not connection via fql documented.

some queries can emulate, fql tables not provide indexing or tables in areas.

searching users via fql. http://developers.facebook.com/tools/explorer?fql=select%20uid%20from%20user%20where%20uid%20%3d%20732484576

select uid user uid = 732484576  {   "data": [     {       "uid": 732484576     }   ] } 

note shawnsspace username facebook , should return uid, since username documented indexed.

   select uid,name,birthday,about_me user username = 'shawnsspace'  {   "data": [     {       "uid": 732484576,        "name": "shawn e carter",        "birthday": null,        "about_me": "find me @ \nhttp://facebook.com/anotherfeed/\nhttp://facebook.com/designbyshawn"     }   ] } 

if wanting fql user profile info, use:

select uid,name,birthday,about_me user uid = 732484576 

additional connections: http://developers.facebook.com/docs/reference/fql/user


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -