As long as you have access to the private track, you should be able to favorite it. Note that this means that either:
- The track belongs to the currently authenticated user or..
- The track was explicitly shared to the currently authenticated user
As long as either of those two conditions is met, you will be able to favorite a track. Note that of course you also must allow the user to authenticate first:
SC.initialize({
client_id: 'foo',
redirect_uri: 'http://example.com/callback.html'
});
SC.connect(function(me) {
SC.put('/me/favorites/53919056', function(response, error) {
// response.status will equal "201 - Created"
});
});