FOSOAuthServerBundle
FOSOAuthServerBundle copied to clipboard
A server side OAuth2 Bundle for Symfony
Hello, I am opening this ticket because i'm getting an issue like #418 but i think it's an other problem. I'm creating a user provider which needs to call an...
This commit is dependant on #663 or #666 to upgrade the PHPUnit dependency to ^8. It brings the tests to a passing state by removing all deprecation warnings that are...
Subset of #663. This pull request: - Makes the CI not dependant on a PHPStan pass so that it can run through to the unit tests - Adds alcaeus/mongo-php-adapter so...
This pull request: - Adds type declarations to bring down the PHPStan error count - Makes the CI not dependant on a PHPStan pass so that it can run through...
Hi! I have a web application referring a user to a separate identity provider application to log in through username/password which sends back an access token and the user gets...
$ composer require friendsofsymfony/oauth-server-bundle The installation fails when configuring with the following output: ``` Executing script cache:clear [KO] [KO] Script cache:clear returned with error code 1 !! !! In ArrayNode.php...
Setting both `services.user_provider` and `services.user_provider` configuration throws the following exception: ``` [Symfony\Component\DependencyInjection\Exception\InvalidArgumentException] The service definition "oauth_server.server_service.storage" does not exist. Exception trace: () at vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/ContainerBuilder.php:798 Symfony\Component\DependencyInjection\ContainerBuilder->getDefinition() at vendor/friendsofsymfony/oauth-server-bundle/FOS/OAuthServerBundle/DependencyInjection/FOSOAuthServerExtension.php:79 ``` With this...
Hi guys, I have a question about implicit flow. I'm a little confused because I can see that other people tried to use this flow on /token endpoint and failed....
I retrieve an access token using the `client_credentials` grant type. Then I try to access a protected resource using this access token, but then I always get the error `HttpException...
**Is it possible to setup FOSOAuth bundle without requiring a user and password to obtain a token?** **I have been able to obtain a access_token without a user name and...