Spotify.NET/SpotifyAPI.Web.Examples/Example.CLI.CustomHTML/Program.cs

65 lines
1.9 KiB
C#
Raw Normal View History

2020-05-16 21:31:44 +01:00
using System.Reflection;
2020-05-15 20:41:53 +01:00
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using SpotifyAPI.Web;
using SpotifyAPI.Web.Auth;
using static SpotifyAPI.Web.Scopes;
2020-05-16 21:31:44 +01:00
namespace Example.CLI.CustomHTML
2020-05-15 20:41:53 +01:00
{
public class Program
{
private static readonly string clientId = Environment.GetEnvironmentVariable("SPOTIFY_CLIENT_ID");
private static readonly string clientSecret = Environment.GetEnvironmentVariable("SPOTIFY_CLIENT_SECRET");
private static EmbedIOAuthServer _server;
public static async Task Main()
{
_server = new EmbedIOAuthServer(
2020-05-15 21:02:54 +01:00
new Uri("http://localhost:5000/callback"),
5000,
Assembly.GetExecutingAssembly(),
2020-05-16 21:42:18 +01:00
"Example.CLI.CustomHTML.Resources.custom_site"
2020-05-15 21:02:54 +01:00
);
2020-05-15 20:41:53 +01:00
await _server.Start();
_server.AuthorizationCodeReceived += OnAuthorizationCodeReceived;
var request = new LoginRequest(clientId, LoginRequest.ResponseType.Code)
{
Scope = new List<string> { UserReadEmail }
};
Uri url = _server.BuildLoginUri(request);
try
{
BrowserUtil.Open(url);
}
catch (Exception)
{
Console.WriteLine("Unable to open URL, manually open: {0}", url);
}
Console.ReadKey();
}
private static async Task OnAuthorizationCodeReceived(object sender, AuthorizationCodeResponse response)
{
await _server.Stop();
AuthorizationCodeTokenResponse token = await new OAuthClient().RequestToken(
2020-05-15 21:02:54 +01:00
new AuthorizationCodeTokenRequest(clientId, clientSecret, response.Code, _server.BaseUri)
2020-05-15 20:41:53 +01:00
);
var config = SpotifyClientConfig.CreateDefault().WithToken(token.AccessToken, token.TokenType);
var spotify = new SpotifyClient(config);
var me = await spotify.UserProfile.Current();
Console.WriteLine($"Your E-Mail: {me.Email}");
2020-05-15 21:02:54 +01:00
Environment.Exit(0);
2020-05-15 20:41:53 +01:00
}
}
}