From acda39ca7fdcc2dfc70d0977367fabe340968510 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Wed, 9 May 2018 05:34:08 +0200 Subject: [PATCH] Move Steam store to https Hopefully it's ready this time, thanks Valve! --- ArchiSteamFarm/ArchiWebHandler.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ArchiSteamFarm/ArchiWebHandler.cs b/ArchiSteamFarm/ArchiWebHandler.cs index 0cfe7f7e5..ad5da9221 100644 --- a/ArchiSteamFarm/ArchiWebHandler.cs +++ b/ArchiSteamFarm/ArchiWebHandler.cs @@ -42,14 +42,10 @@ namespace ArchiSteamFarm { private const string IPlayerService = "IPlayerService"; private const string ISteamUserAuth = "ISteamUserAuth"; private const string ITwoFactorService = "ITwoFactorService"; - - // We must use HTTPS for SteamCommunity, as http would make certain POST requests failing (trades) private const string SteamCommunityHost = "steamcommunity.com"; private const string SteamCommunityURL = "https://" + SteamCommunityHost; - - // We could (and should) use HTTPS for SteamStore, but that would make certain POST requests failing private const string SteamStoreHost = "store.steampowered.com"; - private const string SteamStoreURL = "http://" + SteamStoreHost; + private const string SteamStoreURL = "https://" + SteamStoreHost; private static readonly SemaphoreSlim InventorySemaphore = new SemaphoreSlim(1, 1);