Steam Authentication & Integration

Steam Authentication & Integration 1.6.3

No permission to download
Yes I did found it yesterday, that version fixes this version ;)

(it's a fork of this one so it's possible to upgrade this one with the last update of the other)
Can you explain what needs to be done? Removing the existing addon and then installing this one or what?
 
Here is the fix:

Steam recently changed the community urls returned to use https:// instead of http://, which broke authentication.

Change Http:// to Https:// in library/Steam/ControllerPublic/Register.php. I have added the change below on line 657:

Code:
// Validate wheather it's true and if we have a good ID
        preg_match("#^https://steamcommunity.com/openid/id/([0-9]{17,25})#", $_GET['openid_claimed_id'], $matches);
 
Top Bottom