Skip to content

Commit

Permalink
Added Steam proxy support
Browse files Browse the repository at this point in the history
  • Loading branch information
bytestream authored and m1guelpf committed Sep 10, 2018
1 parent 8428fd2 commit 7d9467f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ class Provider extends AbstractProvider implements ProviderInterface
private function getOpenID()
{
$openID = new LightOpenID(
$redirect = $this->getConfig('redirect')
$redirect = $this->getConfig('redirect'),
$this->getConfig('proxy')
);

$openID->returnUrl = $redirect;
Expand Down

1 comment on commit 7d9467f

@andreich1980
Copy link

@andreich1980 andreich1980 commented on 7d9467f Sep 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could anyone help me to find out how would I use proxy?
My guess is that I should add proxy parameter to my config like this

	    'client_id' => null,
	    'client_secret' => env('STEAM_KEY'),
	    'redirect' => env('STEAM_REDIRECT_URI'),
	    'proxy' => env('STEAM_PROXY'),

How would the STEAM_PROXY value look like?
123.123.123.123:8080?
Is it right?

UPD. This didn't seem to work for me. Help needed.

Please sign in to comment.