Skip to content

Commit

Permalink
Merge pull request #173 from recursivetree/fix-sso-login
Browse files Browse the repository at this point in the history
fix: sso iss claim updated
  • Loading branch information
Crypta-Eve authored Nov 1, 2023
2 parents c36c3f5 + 71d2ee0 commit 6f4d0b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Socialite/EveOnline/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of SeAT
*
* Copyright (C) 2015 to 2022 Leon Jacobs
* Copyright (C) 2015 to present Leon Jacobs
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -166,7 +166,7 @@ private function validateJwtToken(string $access_token): array
$jws = Load::jws($access_token)
->algs(['RS256', 'ES256', 'HS256'])
->exp()
->iss('login.eveonline.com')
->iss('https://login.eveonline.com')
->header('typ', new TypeChecker(['JWT'], true))
->claim('scp', new ScpChecker($scopes))
->claim('sub', new SubEveCharacterChecker())
Expand Down

0 comments on commit 6f4d0b1

Please sign in to comment.