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 using the Facebook JavaScript SDK to get the all the fan pages that the logged in user owns/administrates.

FB.api('/me/accounts', function(response){
    console.log(response);
});

but this shows only the Facebook apps that I own. Am I using the wrong link?

Edit

I added this to my login button :

<fb:login-button perms="email,user_birthday,manage_pages" id="auth-loginlink"></fb:login-button>

and in the Auth Dialog (in the dashboard) i added manage_pages to extended permissions. In the authentication dialog i don't see the manage_pages permission and I still not see the fan pages in the response.

share|improve this question
Did you acquire the permission manage_pages first? – CBroe Jul 16 '12 at 14:59
I did, please look at the edited part of the original post. – Mohamed Turki Jul 16 '12 at 15:19

1 Answer

up vote 0 down vote accepted

The answer is :

FB.login(function(){}, {perms:'manage_pages'});
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.