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, using FQL, to get the liked artists(music) of a user? I check the permissions and I couldn't find anything related to it and I am not a facebook user so I am not sure if it's even possible.

Thanks

share|improve this question
Did you get the help you expected? – Stéphane Bruckert Dec 31 '12 at 13:33
@StéphaneBruckert Thanks for the response - Haven't had time to check it out, sorry about that - Will let you know today! – 0xSina Dec 31 '12 at 13:37

1 Answer

up vote 1 down vote accepted

The Like table doesn't give back the interests, but:

An FQL table that returns the IDs of users who like a given object (video, note, link, photo, or album).

That's not what we need.

First way - Rapid description

In the User table, you'll find a music field which sends back one line containing all the liked artists. The query would be as easy as:

SELECT music FROM user WHERE uid = me()

{
  "data": [
    {
      "music": "Macarize, MARCEL DETTMANN, Alan Fitzpatrick"
    }
  ]
}

Second way - Detailed results

By the Page_fan table we get the user's music interests one by one.

SELECT name, type FROM page WHERE page_id IN (
    SELECT page_id FROM page_fan WHERE uid=me() AND profile_section="music")

{
  "data": [
    {
      "name": "Macarize", 
      "type": "RECORD LABEL"
    }, 
    {
      "name": "MARCEL DETTMANN", 
      "type": "PRODUCER"
    }, 
    {
      "name": "Alan Fitzpatrick", 
      "type": "MUSICIAN/BAND"
    }
  ]
}
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.