I have tried using sp.core.user.canonicalUsername and m.User in various variants, I even tried to get the username by traversing through the m.playlists.starredPlaylist. This is probably easy but I can't find it somewhere?

link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

This is from a Spotify employee:

"Personally-indentifiable information like username won't be available, ever."

Typically, they want you to use Facebook Auth for any social features.

Apparently Spotify will be releasing new documentation in a week or so, so keep an eye out and see if it sheds any light.

link|improve this answer
feedback

It won't be available, but you can obtain an unique user id with sp.core.getAnonymousUserId()

link|improve this answer
Your app will not be approved if you use sp.core – kskjon Apr 3 at 7:57
It was the unique way at the reply date. – Juan Riaza Apr 3 at 16:25
feedback

It appears that you can use

var sp = getSpotifyApi(1);
var models = sp.require('sp://import/scripts/api/models');
models.session.anonymousUserID

From the Api Reference:

anonymousUserID  string     Get an anonymous user ID, which is unique per-user, per-application.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.