So I took a look at this question addressing my issue: Facebook Graph Api v2.0+ - /me/friends returns empty, or only friends who also use my app
I'm confused about the app and app permissions. I'm basically trying to do the exact same thing, but in a python script I wish to execute from the command line.
The line in my code
friends = graph.get_object('me/friends')
Returns only three people on my friends list along with the total number of friends, and I understand this is because it only returns the users who authorize my 'app'. What I'm confused about is to what this 'app' is exactly referring. Can someone please explain what this means, how permission is granted, and why 'friends' is returning two people when I never explicitly requested permissions from anybody?
Also, for my Graph API access token I only requested user_friends
Thanks