Skip to content

Commit

Permalink
Steam Provider - always use http #562 (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaloravec authored Oct 25, 2020
1 parent 1e20616 commit fb8f38d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Provider extends AbstractProvider
/**
* @var string
*/
public const STEAM_INFO_URL = 'https://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=%s&steamids=%s';
public const STEAM_INFO_URL = 'http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=%s&steamids=%s';

/**
* @var string
Expand All @@ -58,7 +58,7 @@ class Provider extends AbstractProvider
/**
* @var string
*/
public const OPENID_NS = 'https://specs.openid.net/auth/2.0';
public const OPENID_NS = 'http://specs.openid.net/auth/2.0';

/**
* @var string
Expand Down Expand Up @@ -151,8 +151,8 @@ private function buildUrl()
'openid.mode' => 'checkid_setup',
'openid.return_to' => $this->redirectUrl,
'openid.realm' => sprintf('%s://%s', $this->request->getScheme(), $realm),
'openid.identity' => 'https://specs.openid.net/auth/2.0/identifier_select',
'openid.claimed_id' => 'https://specs.openid.net/auth/2.0/identifier_select',
'openid.identity' => 'http://specs.openid.net/auth/2.0/identifier_select',
'openid.claimed_id' => 'http://specs.openid.net/auth/2.0/identifier_select',
];

return self::OPENID_URL.'?'.http_build_query($params, '', '&');
Expand Down

0 comments on commit fb8f38d

Please sign in to comment.