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"',
));