Skip to content

Commit

Permalink
Match HTTP authorisation query parameters with the OpenID specificati…
Browse files Browse the repository at this point in the history
…ons (#23)
  • Loading branch information
coolio85 authored Nov 2, 2024
1 parent 7d11b0c commit 415ac6a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Models/OpenID.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ protected function parseResult(string $response): Fluent
protected function getAuthParameters(string $returnTo): array
{
return [
'openid_ns' => self::OPENID_NS,
'openid_mode' => 'checkid_setup',
'openid_return_to' => $returnTo,
'openid_identity' => self::OPENID_IDENTITY,
'openid_claimed_id' => self::OPENID_CLAIMED_ID,
'openid.ns' => self::OPENID_NS,
'openid.mode' => 'checkid_setup',
'openid.return_to' => $returnTo,
'openid.identity' => self::OPENID_IDENTITY,
'openid.claimed_id' => self::OPENID_CLAIMED_ID,
];
}

Expand Down

0 comments on commit 415ac6a

Please sign in to comment.