I'm trying to write a python script with Facebook SDK for Python to download all my own photos.
my_token = 'user_access_token'
import facebook
graph = facebook.GraphAPI(access_token=my_token, version='2.7')
photos = graph.get_connections(id='me', connection_name='photos')
photos
But photo is an empty dict.
{'data': []}
I realized I only had user_friends, public_profile permission per my user access token which is generated with my own fb account and if i need more than those permission I need to apply for an app review "Apps that ask for more than public_profile, email and user_friends must be reviewed by Facebook before they can be made available to the general public."
Do I really need to apply for a review for my so called app, which is just a python script in order to download my own photos or am I missing something here
