Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to create an ArrayList of permissions you want to access. For example, when I did it, when declaring variables.

private static final String[] PERMISSIONS = { "user_photos" };

Then, when implementing the user login area:

if (!facebook.isSessionValid()) {
    facebook.authorize(this, PERMISSIONS, new LoginDialogListener());
}

Hope this helps!

share|improve this answer
Thanks a lot for your response. But I now get the error {"error":{"message":"Malformed access token AAAEAVpwLuvUBAMeXhXSNPr8TcuUA6DVspgM4ZA9tnJRKfgdvZA6ZAF8g1BZB3xXyzE7MnSh0cA6m1ul‌​O7FgdZCwo9KhbEtc2udXws1wKAmAZDZD?access_token=AAAEAVpwLuvUBAMeXhXSNPr8TcuUA6DVspg‌​M4ZA9tnJRKfgdvZA6ZAF8g1BZB3xXyzE7MnSh0cA6m1ulO7FgdZCwo9KhbEtc2udXws1wKAmAZDZD","t‌​ype":"OAuthException","code":190}} while creating the instance of Facebook which APP_ID should we supply? – Namratha Jan 18 at 23:13
@Namratha You should have been given an app ID when you created the app on the Facebook Developer site. You use that app ID to create the Facebook object. – CreatineDevelopment Jan 21 at 1:35
@ CreatineDevelopment: Thank you, i did that. But I still continue to get the error. I have posted it as a different question in SOF here. Thanks again for your help. – Namratha Jan 21 at 16:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.