Denis Valdenaire

Results 7 comments of Denis Valdenaire

Hi, I was searching for the same thing, as is want to share the public key on a `/key/set' URL; so I have my public_key in a file (for use...

That's what i finally did (`public` be the name of the key in the yaml configuration): ```php

I solved it by installing `web-token/jwt-bundle` and `web-token/jwt-key-mgmt` packages. Configuring the service with : ```yaml jose: keys: # Configuration of the keys public: # Unique key name file: # Name...

hi @ThaDaVos, I just finished to integrate oauth2-server and openid-connect to a Symfony application, and the next step was : supporting the nonce parameter ! You code will help me...

Docs says: ```php // Setup the authorization server $server = new \League\OAuth2\Server\AuthorizationServer( $clientRepository, $accessTokenRepository, $scopeRepository, $privateKey, $publicKey, $responseType ); ``` But it's not the `$publicKey` any more, it's the encryptionKey...

To the Symfony users out there : you can use the code made by @ThaDaVos with some minor adaptations; First, you probably don't have (or want) the `Illuminate\Support\Arr`, the request...

Can you try this : 1. Put `private.key` and `public.key` in a `config/jwt/` directory 2. Reference them with the following instructions in `league_oauth2_server.yaml` file, under `authorization_server` and `resource_server` respectively. ```yaml...