mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
43 lines
881 B
Markdown
43 lines
881 B
Markdown
---
|
||
id: profiles
|
||
title: Profiles
|
||
sidebar_label: Profiles
|
||
---
|
||
|
||
## GetPrivateProfile
|
||
|
||
> Get detailed profile information about the current user (including the current user’s username).
|
||
|
||
**Parameters**
|
||
|
||
|Name|Description|Example|
|
||
|--------------|-------------------------|-------------------------|
|
||
|
||
Returns a [PrivateProfile](https://developer.spotify.com/web-api/object-model/#user-object-private)
|
||
|
||
**Usage**
|
||
```csharp
|
||
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](https://developer.spotify.com/web-api/object-model/#user-object-public)
|
||
|
||
**Usage**
|
||
```csharp
|
||
```
|
||
|
||
---
|