i have this fql statement
$fql_query = array(
'method' => 'fql.query',
'query' => 'SELECT aid, owner, name from album WHERE owner = ' . $uid
);
$albums = $facebook->api($fql_query);
the print_r dump of the return contains aid= matching the id of the owner rather than the id of the actual album. but the aid is return not only with the user id but with extra info tagged on to the end like "43367" for one album and another album has "-3" tagged on to it
2 questions then
- why is the owner id being returned instead of the correct album id
- and whats being tagged on to the end of it?