Skip to content

Commit

Permalink
Updated character and stash urls to use https
Browse files Browse the repository at this point in the history
  • Loading branch information
Stickymaddness committed Jul 14, 2015
1 parent c0adc60 commit cd79e15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions POEApi.Transport/HttpTransport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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=\\\"(?<hash>[a-zA-Z0-9]{1,})\\\"";

Expand Down

0 comments on commit cd79e15

Please sign in to comment.