[Solved] How to get friends count of an random user in Facebook?


If you read the Facebook API documentation for that endpoint, you’ll be able to see that retrieving the friends of an user requires that person to enable your app’s permission to do so.

So the answer is yes, if you have the permission from the user, or no, otherwise.

If you have the required permissions, then the JSON response will look the same as it does for me/friends.

The response will generally look like this:

{
  "data": [
    {
      "name": "Friend Name", 
      "id": "1579961218908589"
    }, 
  ], 
  "paging": {
    "next": ""
  }, 
  "summary": {
    "total_count": 317
  }
}

solved How to get friends count of an random user in Facebook?