php - FaceBook friends.getAppUsers replacement -
php - FaceBook friends.getAppUsers replacement -
i trying find friends have installed application. after doing much research found facebook has way marked legacy.
is there new way via graph api? comparing uid's 1 1 people in database way slow.
facebook fql queries still supported , not deprecated, run query like:
select uid, name user uid in (select uid2 friend uid1 = me()) , is_app_user = 1 with url (url encode , add together users access token):
https://api.facebook.com/method/fql.query?query=select uid, name user uid in (select uid2 friend uid1 = me()) , is_app_user = 1&access_token=...
however have found more reliable against own database. if setup indexing , in sql statement should fast wouldn't need 1 one.
php facebook sdk facebook-graph-api
Comments
Post a Comment