diff --git a/Provider.php b/Provider.php index 540e5a3..3fdf49a 100644 --- a/Provider.php +++ b/Provider.php @@ -42,7 +42,7 @@ protected function getAuthUrl($state) { $openID = $this->getOpenID(); - $openID->identity = 'http://steamcommunity.com/openid'; + $openID->identity = 'https://steamcommunity.com/openid'; return $openID->authUrl(); } @@ -80,7 +80,7 @@ protected function parseAccessToken($body) */ protected function getUserByToken($token) { - $endpoint = 'http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=%s&steamids=%s'; + $endpoint = 'https://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=%s&steamids=%s'; $response = $this->getHttpClient()->get( sprintf($endpoint, $this->getConfig('client_secret'), $token)