Счетчик друзей в фейсбуке - PullRequest
       22

Счетчик друзей в фейсбуке

3 голосов
/ 10 февраля 2012

То, что я пытаюсь сделать, - это счетчик друзей в Facebook в php, поэтому результат кода будет примерно таким: «У вас есть 1342 Друзья!».

Так вот код, который я использую:

<?php 

require_once("../src/facebook.php");

    $config = array();
    $config[‘appId’] = 'MY_APP_ID';
    $config[‘secret’] = 'MY_APP_SECRET';
    $facebook = new Facebook($config);
    $user_id = "MY_USER_ID";

      //Get current access_token
    $token_response = file_get_contents
      ("https://graph.facebook.com/oauth/access_token?
      client_id=$config[‘appId’]
      &client_secret=$config[‘secret’]
      &grant_type=client_credentials"); 


  // known valid access token stored in $token_response
  $access_token = $token_response;

  $code = $_REQUEST["code"];

  // If we get a code, it means that we have re-authed the user 
  //and can get a valid access_token. 
  if (isset($code)) {
    $token_url="https://graph.facebook.com/oauth/access_token?client_id="
      . $app_id  
      . "&client_secret=" . $app_secret 
      . "&code=" . $code . "&display=popup";
    $response = file_get_contents($token_url);
    $params = null;
    parse_str($response, $params);
    $access_token = $params['access_token'];
  }


  // Query the graph - Friends Counter:
$data = file_get_contents
("https://graph.facebook.com/$user_id/friends?" . $access_token );
$friends_count = count($data['data']); 
echo "Friends: $friends_count";

echo "<p>$data</p>"; //to test file_get_contents

?>

Итак, результат echo $ Friends_count всегда равен "1".

А затем я проверяю $ data с помощью эха, и он дает мне список всех друзей, поэтому он получает контент, но не считает его правильным ... как я могу это исправить?

Я уже пытался изменить

$friends_count = count($data['data']); 

для

$friends_count = count($data['name']);

и

$friends_count = count($data['id']);

но результат всегда "1".


Результат приведенного выше кода выглядит следующим образом;

Friends: 1

{"data":[{"name":"Enny Pichardo","id":"65601304"},{"name":"Francisco Roa","id":"500350497"},etc...]

Ответы [ 2 ]

2 голосов
/ 10 февраля 2012

У вас есть объект JSON;строка, а не все, что PHP может «посчитать» с помощью count().Сначала нужно проанализировать JSON:

$obj=json_decode($data);
$friends_count = count($obj->data); // This refers to the "data" key in the JSON

Некоторые ссылки, которые я быстро нагуглил:

http://php.net/manual/en/function.json-decode.php
http://roshanbh.com.np/2008/10/creating-parsing-json-data-php.html

0 голосов
/ 29 октября 2012

Вы можете легко подсчитать количество друзей с помощью fql.

Существует поле friend_count напротив таблицы пользователя, которую вы можете запросить.

SELECT friend_count FROM user WHERE uid = me();

https://graph.facebook.com/fql?q=SELECT friend_count FROM user WHERE uid={any id}
...