Maria
Maria

Reputation: 3525

Facebook Graph API get friends of friends

I'm using the Facebook's Graph API (https://developers.facebook.com/tools/explorer), and query the "friends" field on my friends. But it always give me:

{
  "error": {
    "message": "Unsupported operation", 
    "type": "OAuthException", 
    "code": 100
  }
} 

Is this error supposed to happen? If it is, then is there any way to crawl Facebook friends' friends using other methods?

Any suggestions would be much appreciated, thanks!

Upvotes: 0

Views: 534

Answers (1)

Tobi
Tobi

Reputation: 31479

Requesting the friends of friends was never possible via the Graph API. Even more, starting with v2.0 you'll only see friends who are also using the same app if you request /{user_id}/friends

Upvotes: 2

Related Questions