active-directory
active-directory copied to clipboard
Provides a simple login to an Azure Active Directory instance
@mattrjk @kschroeder `` Despite having defined redirect_url is am still getting the below error; Fatal error: Uncaught League\OAuth2\Client\Provider\Exception\IdentityProviderException: invalid_client in D:\home\site\wwwroot\login\vendor\league\oauth2-client\src\Provider\GenericProvider.php:216 Stack trace: #0 D:\home\site\wwwroot\login\vendor\league\oauth2-client\src\Provider\AbstractProvider.php(644): League\OAuth2\Client\Provider\GenericProvider->checkResponse(Object(GuzzleHttp\Psr7\Response), Array) #1 D:\home\site\wwwroot\login\vendor\league\oauth2-client\src\Provider\AbstractProvider.php(560): League\OAuth2\Client\Provider\AbstractProvider->getResponse(Object(GuzzleHttp\Psr7\Request))...
We are using certificate without any secrets is this library capable of that and if it is how I can make it possible? And if no, can you recommend something...
When attempting to install `magium/active-directory` into a brand new Laravel 7 project using the following command: ```composer require magium/active-directory``` I receive the following error: ``` Using version ^1.1 for magium/active-directory...
When installing via composer, the following packages are flagged as outdated: Package zendframework/zend-diactoros is abandoned, you should avoid using it. Use laminas/laminas-diactoros instead. Package container-interop/container-interop is abandoned, you should avoid...
Hi I got this error when I have hit active directory endpoint with parameters Fatal error: Uncaught exception 'Magium\ActiveDirectory\InvalidRequestException' with message 'Request state did not match' in D:\wampx64\www\active-directory\vendor\magium\active-directory\src\Delegates\Receive.php on line ...
I didn't find any JWT token validation. In the `Receive.php` file: ``` $idToken = $accessToken->getValues()['id_token']; $decodedAccessTokenPayload = base64_decode( explode('.', $idToken)[1] ); ``` Isn't it a security risk to not validate...