oauth2-bundle icon indicating copy to clipboard operation
oauth2-bundle copied to clipboard

Symfony bundle which provides OAuth 2.0 authorization/resource server capabilities.

Results 71 oauth2-bundle issues
Sort by recently updated
recently updated
newest added

This PR enables users wanting to use the authentication manager introduced in Symfony 5.3. Tests are as of yet failing due the fact I'm unaware how to do this because...

Assist other developers in knowing this project's future plans of moving to `thephpleague/oauth2-server-bundle`. Obviously feel free to update or improve the message.

I was unable to find how to configure the `in_memory` provider. It seems it does not support predefined values (e.g. from `.env` files). Would it be possible to add such...

Return type of Trikoder\Bundle\OAuth2Bundle\League\Entity\Scope::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice.

Hello I have a problem with Restricting routes by scope described in: https://github.com/trikoder/oauth2-bundle/blob/v3.x/docs/basic-setup.md#restricting-routes-by-scope there is an example which doesn't work for me: oauth2_restricted: path: /api/restricted controller: 'App\Controller\FooController::barAction' defaults: oauth2_scopes: ['foo',...

Hi, I need to implement the password grant flow between an angular SPA and symfony api back end. My understanding is that I should use the password grant flow. The...

Hi, I see this line of code in password grant: ``` $this->getEmitter()->emit(new RequestEvent(RequestEvent::REFRESH_TOKEN_ISSUED, $request)); ``` The problem is that this bundle does not provide an emitter to the grant implementations...

The `/token` endpoint is responding with 401. - The client has the grant type of password - The security access control and firewalls are configured as per the documentation -...

Hi, for a special case I need to manually generate an access and a refresh token with the bundle. The reason is very complicated, but I have to automatically generate...

Hi ! On the service configuration (oauth2-bundle/Resources/config/services.xml:48), the UserRepository service is define. And it use `ClientManagerInterface` and `EventDispatcherInterface` and `UserConverter` Can you change this configuration to use `UserConverterInterface` ? As...