I am using the facebook android sdk to access the user's facebook albums and intern get the photos.
But when I do a "https://graph.facebook.com/"+wallAlbumID+"/photos?access_token="+facebook.getAccessToken() it returns blank data. { "data": [] }
I read in stackoverflow question and also in Graph API for Photo that I need to give user_photospermission while creating the facebook object.
I am not sure how to do so.I read a lot of forums and also checked on SOF but could not find the solution.
This is how I am creating the facebook object
facebook = new Facebook(APP_ID);
Can anyone please help me with this.
