Listen to music with FQL

I am trying to get music.listens for user and friends of users using FQL.

Does anyone know what an FQL query is for getting music.listens?

Thank!

+3


source to share


2 answers


You cannot currently query Open Graph actions using FQL

You need to use the Graph API. You will need user_actions.music and / or friends_actions.music permissions, after which you can get:



https://graph.facebook.com/UID/music.listens?access_token=TOKEN

      

+2


source


can be queried through FQL in this style:

/fql?q=SELECT id FROM open_graph_action WHERE id = XXXXX

or



fql?q=SELECT id, objects, tags, type, app_id, place, end_time, publish_time FROM open_graph_action WHERE id = XXXXX

What I know so far is not a doc yet.

+2


source







All Articles