Skip to content

Commit

Permalink
Add method to retreive raw id_token
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua License committed Jun 20, 2021
1 parent 3f8d322 commit 7c7ef91
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Token/AccessToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ public function __construct(array $options, $provider)
}
}

public function getIdToken()
{
return $this->idToken;
}

public function getIdTokenClaims()
{
return $this->idTokenClaims;
Expand Down

0 comments on commit 7c7ef91

Please sign in to comment.