简体   繁体   中英

How to get facebook app online users

I like to know if there is a way to count the users that are online at one time on an application.

They have the app installed and they are online.

I have a PHP facebook app using the FBML.

Thank you! Adrian

You have to take the extended permission of user_online_presence to get your desired result. You can take this extended permission like this

$loginUrl = $facebook->getLoginUrl(
       array(
        'canvas'    => 1,
        'fbconnect' => 0,
        'req_perms' => 'email,user_online_presence'
        )
);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM