i want to fetch Facebook Mutual friends in my ios App
this is my try to get mutual friends i call with this Link
[NSString stringWithFormat:@\"me/mutua
You're using the wrong endpoint syntax, as @CBroe already pointed out, and which is also clear from the docs.
You need to use
/{user-id}.context/mutual_friends
The {user-id}
is the user you're interested in, and the "other" user is the one which Access Token was used for the request. This ONLY works for users which are both already users of your app.