Get music listens using FQL [closed]

本小妞迷上赌 提交于 2019-12-05 04:22:06

问题


I am trying to get music.listens for a user and a user's friends using FQL.

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

Thanks!


回答1:


You cannot currently query for Open Graph actions using FQL

You need to use the Graph API. You'll need the user_actions.music and/or friends_actions.music permissions, then you'll be able to GET:

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



回答2:


it's possible to query via 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

That's all I know so far, no docs yet.



来源:https://stackoverflow.com/questions/9741604/get-music-listens-using-fql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!