PHP code example of javis / password-grant-client

1. Go to this page and download the library: Download javis/password-grant-client library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

javis / password-grant-client example snippets


$provider = new \League\OAuth2\Client\Provider\GenericProvider([
    'clientId'                => 'demoapp',    // The client ID assigned to you by the provider
    'clientSecret'            => 'demopass',   // The client password assigned to you by the provider
    'urlAccessToken'          => 'http://brentertainment.com/oauth2/lockdin/token'
]);

$client = new \Javis\OAuth2\PasswordGrantClient($provider);

$return = $client->getAccessToken('username', 'password');
echo $token->getToken();

$client->forgetToken();