Reputation: 145
i'v set up my Music Application using this.
i'm trying to pubish new user action but it wont work i'm getting (#3) User must be on whitelist.
this is the code.
FB.api('/me/music.listens&song=track-page-url, 'post', function(response) {
if(!response || response.error) {
console.log(response.error);
} else {
console.log('success');
}
});
i googled the error and found this question but it appears that there is no answer.
Upvotes: 1
Views: 3128
Reputation: 1009
I'm getting "An unknown error has occurred.". It seems that music.listens only works for a certain set of applications such as MOG, Rdio, Spotify, Slacker Radio, etc.
Upvotes: 0
Reputation: 311
To apply to be whitelisted, follow the instructions in the Open Graph Builtin Actions docs. Hope that helps!
Upvotes: 1
Reputation: 61
Facebook only allows whitelisted partners to take advantage of the Open Graph Music, on Facebook Open Graph Music, the first line:
Facebook Open Graph Music is only available to whitelisted partners at this time.
Upvotes: 0