mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
24 lines
549 B
C#
24 lines
549 B
C#
|
using System;
|
||
|
using System.Threading.Tasks;
|
||
|
using SpotifyAPI.Web.Http;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class UserProfileClient : APIClient, IUserProfileClient
|
||
|
{
|
||
|
public UserProfileClient(IAPIConnector apiConnector) : base(apiConnector) { }
|
||
|
|
||
|
public Task<PrivateUser> Current()
|
||
|
{
|
||
|
return API.Get<PrivateUser>(SpotifyUrls.Me());
|
||
|
}
|
||
|
|
||
|
public Task<PublicUser> Get(string userId)
|
||
|
{
|
||
|
Ensure.ArgumentNotNullOrEmptyString(userId, nameof(userId));
|
||
|
|
||
|
return API.Get<PublicUser>(SpotifyUrls.User(userId));
|
||
|
}
|
||
|
}
|
||
|
}
|