Spotify.NET/SpotifyAPI.Docs/versioned_docs/version-5.1.1/web/profiles.md
Jonas Dellinger fee995f984 Started docs
2020-05-13 18:27:16 +02:00

881 B
Raw Blame History

id title sidebar_label
profiles Profiles Profiles

GetPrivateProfile

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