Spotify.NET/docs/SpotifyWebAPI/profiles.md
Johnny Dellinger @PC 1c35d216e7 Renamed folders
2015-07-26 16:18:50 +02:00

869 B
Raw Permalink Blame History

##GetPrivateProfile AUTH REQUIRED

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

Paramters

Name Description Example

Returns a PrivateProfile

Usage

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

##GetPublicProfile

Get public profile information about a Spotify user.

Paramters

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

Returns a PublicProfile

Usage