Spotify.NET/SpotifyAPI.Docs/docs/SpotifyWebAPI/profiles.md
2018-12-22 21:12:57 +01:00

871 B
Raw Blame History

##GetPrivateProfile AUTH REQUIRED

Get detailed profile information about the current user (including the current users username).

Parameters

Name Description Example

Returns a PrivateProfile

Usage

PrivateUser user = _spotify.GetPrivateProfile();
Console.WriteLine(user.DisplayName);

##GetPublicProfile

Get public profile information about a Spotify user.

Parameters

Name Description Example
userId The user's Spotify user ID. EXAMPLE

Returns a PublicProfile

Usage