0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-21 23:47:57 +00:00
salesagility_SuiteCRM/lib/API/OAuth2
Clemente Raposo 0fc04729be Fix #10268 - Access token wil not refresh for Oauth2 password clients
Kudos: Scott Miller @scottfrancismiller
original author: Scott Miller @scottfrancismiller
2024-07-17 13:40:00 +01:00
..
Entities Run rector on lib/Api folder 2023-07-18 15:53:08 +01:00
Exception Run rector on lib/Api folder 2023-07-18 15:53:08 +01:00
Middleware Run rector on lib/Api folder 2023-07-18 15:53:08 +01:00
Repositories Fix #10268 - Access token wil not refresh for Oauth2 password clients 2024-07-17 13:40:00 +01:00
.gitignore Modifying SuiteCRM file structure 2017-11-27 14:55:16 +00:00
.htaccess Modifying SuiteCRM file structure 2017-11-27 14:55:16 +00:00
Keys.php Run rector on lib/Api folder 2023-07-18 15:53:08 +01:00
README.md Modifying SuiteCRM file structure 2017-11-27 14:55:16 +00:00

OAuth 2 Server

Generating public and private keys

To generate the private key run this command on the terminal: openssl genrsa -out private.key 1024

extract the public key from the private key: openssl rsa -in private.key -pubout -out public.key

Generating encryption keys

To generate an encryption key for the AuthorizationServer run the following command in the terminal:

php -r 'echo base64_encode(random_bytes(32)), PHP_EOL;'