oauth2-server-php
oauth2-server-php copied to clipboard
A library for implementing an OAuth2 Server in php
Hi, I've followed the cookbook guide and am getting this error. ``` Fatal error: Uncaught PDOException: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'code_challenge' cannot be null in /**/oauth2-server-php/src/OAuth2/Storage/Pdo.php:292 Stack trace:...
I hope that this is the appropriate place to comment on documentation issues. The full example in the JWT Access Token documentation page uses "id_rsa" and "id_rsa.pub" as the private...
Add support for "Authorization Code Grant with PKCE" flow to allow distributed apps to securely authenticate with an OAuth server without needing to embed secrets within the distributed application, as...
Dont create multiple access tokens when one has not expired yet for efficient purposes and security. Included this to avoid too much of new tokens creations when one has not...
I have been trying to figure out why we have so many access tokens in our database and I've been looking through the code and noticed that `unsetAccessToken` never really...
Please solved this error
Might be a bit early, but it seems there is no more maintenance on this library. Last update was in July 2023, and it doesn't support PHP 8.4 nor does...
Minimal fix for #1073. Adds the explicit `?` to implicitly nullable arguments within the `src` tree.
Just fixed the 8.4 syntax with php cs fixer.
### Title: `getAccessTokenData() Returns NULL Despite Valid Token Data` ### Description: I'm experiencing an issue with the `getAccessTokenData()` function where it returns `NULL` even when there are valid values in...