Members
- 
			spotify :Spotify
- 
	DescriptionThe spotify client. Details
Methods
- 
			get( id ) → {Promise.<(User|HTTPError|ApiError)>}
- 
	DescriptionGet public profile information about a Spotify user. ParametersName Type Description idstring The Spotify ID for the user. ReturnsDetails
- 
			top( type, options ) → {Promise.<(Array.<Artist>|Array.<Track>|HTTPError|ApiError)>}
- 
	DescriptionGet the current user's top artists or tracks based on calculated affinity. ParametersName Type Description typestring The type of entity to return. Valid values: artists or tracks optionsUserTopOptions ReturnsDetails
- 
			followed( options ) → {Array.<Artist>|HTTPError|ApiError}
- 
	DescriptionGet the current user's followed artists. ParametersName Type Description optionsFollowingArtistOptions ReturnsDetails
- 
			follow( ids ) → {Promise.<(Status|HTTPError|ApiError)>}
- 
	DescriptionAdd the current user as a follower of one or more user. ParametersName Type Description idsstring | Array.<string> The Spotify ID of the user. ReturnsDetails
- 
			unfollow( ids ) → {Promise.<(Status|HTTPError|ApiError)>}
- 
	DescriptionRemove the current user as a follower of one or more user. ParametersName Type Description idsstring | Array.<string> The Spotify ID of the user. ReturnsDetails
- 
			following( ids, users ) → {Array.<boolean>|HTTPError|ApiError}
- 
	DescriptionCheck to see if the current user is following one or more users. ParametersName Type Description idsstring The Spotify ID of the user. usersstring | Array.<string> A list of Spotify User IDs. ReturnsDetails
- 
			me() → {Promise.<(User|HTTPError|ApiError)>}
- 
	DescriptionGet detailed profile information about the current user (including the current user's username). ReturnsDetails