Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Open Graph API, can I see when users Add To Playlist or Star tracks in Spotify?

How would I access when a user (and a friend of a user) adds a song to a playlist, or stars a song in Spotify, Rdio etc?

like image 799
Jordan Feldstein Avatar asked Sep 24 '11 16:09

Jordan Feldstein


Video Answer


2 Answers

http://graph.facebook.com/me/music.listens

http://graph.facebook.com/me/music.playlists

You have to get the user_actions.music permission before you can read those.

like image 182
Paul Tarjan Avatar answered Feb 19 '23 09:02

Paul Tarjan


The correct permissions is user_actions:music, not a dot.

  • user_actions:music
  • user_actions:video
  • user_actions:news

http://graph.facebook.com/me/music.listens

http://graph.facebook.com/me/music.playlists

Those 2 endpoints still returns empty arrays.

like image 22
Jeremy Selier Avatar answered Feb 19 '23 09:02

Jeremy Selier