Using Spotify-API-NET library
我正在尝试连接到我的spotify客户端但是我总是收到这条消息:
无法连接到远程服务器。
我看到其他主题是关于相同问题的,与其他API有关,所以这一定是c#的问题。
代码:
SpotifyLocalAPIClass spotify = new SpotifyLocalAPIClass();
if(spotify.Connect())
{
Console.WriteLine("Connected");
}
else
{
Console.WriteLine("Not connected");
}
Console.Read();