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'm fairly new to the Facebook API, but I've tried to do my due diligence to figure this out, but I can't seem to. I'm simply trying to get a list of the logged-in user's albums, using various techniques, to no avail. I'm using the JavaScript SDK, and I have the following code:

<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>

FB.init({ 
    appId:'{MY_APP_ID}',
    cookie: true,
    status: true,
    xfbml: true,
    oauth : true
});

FB.login(function(response) {
    if(response.status === 'connected') {
        FB.api('/me/albums', function(response) {
            console.log(response);
        });
    }
}, { scope : 'user_photos' });

</script>

Note that {MY_APP_ID} is actually my application ID. So, when this executes, the popup will request access to the users photos, and that works fine. Now, in code, response returns a data array that contains no elements. In addition to trying the above, I've tried initiating a JSON request to the following URL as well as directly visiting it in the browser:

https://graph.facebook.com/me/albums?access_token=" + response.authResponse.accessToken

And this returns an empty data array as well. The access token that I'm using is coming either from the FB.login method or FB.getLoginStatus. Any help would be greatly appreciated. Thanks in advance.

share|improve this question

2 Answers

This can also happen if you're using the JS SDK, as that authentication process and auth dialog are apparently complete separate from what you set up in the developer app.

You need to ALSO include the permissions you desire when you call FB.login() using the optional scope parameter, eg...

  FB.login(function(response) {
    if (response.authResponse) {
      M.FB.setIsAuthorised(true);
      //  On success.
    } else {
      //  On failure.
    }         
  }, { 
    scope: 'email,friends_birthday,user_photos,friends_photos,publish_actions'
  });
share|improve this answer
+1. It took a while for me to figure this out. Thanks. – MT. Sep 9 '12 at 16:56
up vote 0 down vote accepted

So, I figured it out, so I will answer my own question. All the other answers on SO was related to permissions, but this wasn't it. It turns out that if I looked at my account settings (I'm the 'user'), and looked at apps, for this application, for some reason, it showed it only was requesting the email address. I knew this wasn't correct, because I was clearly asking for user_photos as well. So, after deleting the application from my profile, and reinitiating the connect, it looks like I'm able to access the albums fine. I'm not sure if Facebook intended to do this by design, but it seems like a potential bug to me.

share|improve this answer

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.