From cd79e15eb340b189519a17c1afc5446e081f2a00 Mon Sep 17 00:00:00 2001 From: Stickymaddness Date: Tue, 14 Jul 2015 21:00:25 +0200 Subject: [PATCH] Updated character and stash urls to use https --- POEApi.Transport/HttpTransport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/POEApi.Transport/HttpTransport.cs b/POEApi.Transport/HttpTransport.cs index 20a91e34..ea9b07df 100644 --- a/POEApi.Transport/HttpTransport.cs +++ b/POEApi.Transport/HttpTransport.cs @@ -22,8 +22,8 @@ public class HttpTransport : ITransport private enum HttpMethod { GET, POST } private const string loginURL = @"https://www.pathofexile.com/login"; - private const string characterURL = @"http://www.pathofexile.com/character-window/get-characters"; - private const string stashURL = @"http://www.pathofexile.com/character-window/get-stash-items?league={0}&tabs=1&tabIndex={1}"; + private const string characterURL = @"https://www.pathofexile.com/character-window/get-characters"; + private const string stashURL = @"https://www.pathofexile.com/character-window/get-stash-items?league={0}&tabs=1&tabIndex={1}"; private const string inventoryURL = @"http://www.pathofexile.com/character-window/get-items?character={0}&accountName={1}"; private const string hashRegEx = "name=\\\"hash\\\" value=\\\"(?[a-zA-Z0-9]{1,})\\\"";