what code could i use to display all users who are using my app? i am getting the facebook session as such:
require_once basepath.'/includes/facebook/src/facebook.php';
// Create our Application instance.
$facebook = new Facebook(array(
'appId' => '#####',
'secret' => '####',
'cookie' => true,
));
$session = $facebook->getSession();
how do i show connected users? thanks
You can use a FQL Query like
select uid, name, is_app_user from user where uid in (select uid2 from friend where uid1=me()) and is_app_user=1to get your friends already using an app.