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 am using FQL. I am using the following set of query to get info about album,

SELECT aid,src_small from photo where pid='100000244468314_1600187'

i get the following result,

{
  "data": [
  {
  "aid": "0",
  "src_small": "https://fbcdn-photos-a.akamaihd.net/hphotos-ak-ash3/545289_450190444999100_1364645489_t.jpg"
}
]
}

Then i gave the following query to get the album name and owner,

SELECT aid, owner, name, object_id FROM album WHERE aid="0"

But i get the following,

{
"data": [
]
}

Why is album id 0? and why it returns None? Please help. I am new to FQL

share|improve this question

1 Answer

up vote 1 down vote accepted

Try this query instead:

SELECT aid, owner, name, object_id FROM album 
  WHERE object_id IN 
    (SELECT album_object_id FROM photo where pid='100000244468314_1600187')

It looks like aid and pid fields are on their way to be deprecated in exchange for the object_id fields.

share|improve this answer
I tried the above query...it returned the same empty response – Never Back Down Jun 21 '12 at 16:19
Do you get an album_object_id if you run just this part of the query? SELECT album_object_id FROM photo where pid='100000244468314_1600187' Is this photo yours? If not, have you requested the permissions you need in your access token? – cpilko Jun 21 '12 at 16:22
oh yeah! got it... giving more permissions did the trick..and the above query is better. I will use this – Never Back Down Jun 21 '12 at 16:26

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.