From e0357ef2b15b19147c1a3f3fc2fd70f674189316 Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Sat, 3 Sep 2016 00:40:55 +0200 Subject: [PATCH] Updated Port to HTTPS-Version --- SpotifyAPI/Local/RemoteHandler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SpotifyAPI/Local/RemoteHandler.cs b/SpotifyAPI/Local/RemoteHandler.cs index c6f20c01..6e627d7d 100644 --- a/SpotifyAPI/Local/RemoteHandler.cs +++ b/SpotifyAPI/Local/RemoteHandler.cs @@ -103,7 +103,7 @@ namespace SpotifyAPI.Local parameters += "&returnon=login%2Clogout%2Cplay%2Cpause%2Cerror%2Cap"; } - string address = "http://" + Host + ":4380/" + request + parameters; + string address = "https://" + Host + ":4371/" + request + parameters; string response = ""; try { @@ -144,7 +144,7 @@ namespace SpotifyAPI.Local parameters += "&returnon=login%2Clogout%2Cplay%2Cpause%2Cerror%2Cap"; } - string address = "http://" + Host + ":4380/" + request + parameters; + string address = "https://" + Host + ":4371/" + request + parameters; string response = ""; try {