oauth2-server-php-docs
oauth2-server-php-docs copied to clipboard
documentation for the oauth2-server-php library
In the last commit, you removed the Gemfile, on purpose? Once the Gemfile is put back into place and after the bundle install/update, I'm getting: ``` LoadError: cannot load such...
in database expire time is inserted 4 hours back. if time is 16:20:43 then there time inserted 12:03:47. please explain me how its work?
I guess I more leaving this here in case anyone else runs into this problem. I can't lay my finger on exactly what is causing the problem I'm having, but...
see https://github.com/bshaffer/oauth2-server-php/issues/317: > The docs specify that you should base64_decode the signature before passing it to openssl_verify. > This will fail because the signature is not base64 encoded, it is...
I have a iOS native app that I am trying to implement the full cycle of user's authorisation. That is: 1. First Authorisation using a username and password via an...
Hi, do I understand correctly that I cannot use authorisation code as grant type without using client credentials? What I was trying to do, is to send a user to...
From https://github.com/bshaffer/oauth2-server-php/issues/459: > Hello, > > Great work on this, very educational and helpful. Many thanks. > > Here: > http://bshaffer.github.io/oauth2-server-php-docs/cookbook/ > > The server.php code should probably also include:...
from https://github.com/bshaffer/oauth2-server-php/issues/461: > Schema for jti_table and public_key_table implemented by PDO storage is missing. > > http://bshaffer.github.io/oauth2-server-php-docs/cookbook/
From https://github.com/bshaffer/oauth2-server-php/issues/463: > Good afternoon, > > Just noticed that the DDL statements on the following page http://bshaffer.github.io/oauth2-server-php-docs/cookbook/ are not in sync with the OAuth2/Storage/Pdo.php function getBuildSql. > > E.g....
`http://localhost/authorize.php?response_type=code&client_id=testclient&state=xyz` must include `&redirect_uri=` plus a URL. If not, and you set `redirect_uri` in `oauth_clients`, you get this fatal error: `Uncaught exception 'PDOException' with message 'SQLSTATE[23000]: Integrity constraint violation: 1048...