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 try to use facebook API. How to get all ID of my facebook application users?

This work for ID of my friends:

<?php
    require_once "auth/facebook/facebook.php";
  $facebook = new Facebook(array(
      'appId'  => '',
      'secret' => '',
    ));

  $app_id = '';
  $app_secret = '';

    $app_access_token = $app_id . '|' . $app_secret;

    $user = $facebook->getUser();


    if ($user) {
        $user_profile = $facebook->api('/me');
        $friends = $facebook->api('/me/friends');


        echo '<ul>';
        foreach ($friends["data"] as $value) {
            echo '<li>';
            echo '<div class="pic">';
            echo '<img src="https://graph.facebook.com/' . $value["id"] . '/picture"/>';
            echo '</div>';
            echo '<div class="picName">'.$value["id"].'</div>'; 
            echo '</li>';
        }
        echo '</ul>';
    }
?>

Is it possible? How to do?

share|improve this question

1 Answer

up vote 0 down vote accepted

There is no way to get it from one single call.

You can log each id to a database every time a new user logs into your application.

 $user = $facebook->getUser();
 // Save $user to a database of your choice
share|improve this answer
This is only way? I don't want store this in database – Emanuel Mar 15 at 22:05
Yes this is the only way. – phwd Mar 15 at 22:12
Thank you @phwd – Emanuel Mar 15 at 22:17

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.