Rodolphe Cardon
Results
2
comments of
Rodolphe Cardon
Hi @bshaffer, As already reported by @belerophon on 12 Mar 15, the **Token** Endpoint of a compliant OpenID Provider MUST always include an ID Token in the response. See [OpenID...
This problem can be solved by using `$server->addGrantType(new OAuth2\OpenID\GrantType\AuthorizationCode($storage));` instead of `$server->addGrantType(new OAuth2\GrantType\AuthorizationCode($storage));` The GrantType class `AuthorizationCode` in the OpenID package implements the `createAccessToken` function that add the `id_token` parameter...