ParparDromi
ParparDromi

Reputation: 145

(#3) User must be on whitelist, music.listens - Open Graph Music

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

Answers (3)

James Hartig
James Hartig

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

Colin Creitz
Colin Creitz

Reputation: 311

To apply to be whitelisted, follow the instructions in the Open Graph Builtin Actions docs. Hope that helps!

Upvotes: 1

fuchse
fuchse

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

Related Questions