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.

Is it possible to access public photo albums of any user using app access token (not access token of that user)?

$token = $fb->getAccessToken();

// works
$result = $fb->api("/user?access_token=$token");

// fails
$result = $fb2->api("/user/albums?access_token=$token");

// also fails
$result = $fb2->api(array(
    'method' => 'fql.query',
    'query' => 'SELECT aid, owner, name, object_id FROM album WHERE owner="user_id"',
));
share|improve this question

closed as not a real question by casperOne Jan 8 at 21:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Is it possible to access public photo albums of any user using app access token (not access token of that user)?

Why haven’t you consulted the documentation to find out about this?

https://developers.facebook.com/docs/reference/api/album/

https://developers.facebook.com/docs/reference/api/photo/

https://developers.facebook.com/docs/reference/api/user/

share|improve this answer
Documentation suggests that it's not possible. Question is whether there is better answer... – Eugene Shaine Mednikov Jan 8 at 12:28

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