PHP code example of netliferesearch / oauth2-twist

1. Go to this page and download the library: Download netliferesearch/oauth2-twist 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/ */

    

netliferesearch / oauth2-twist example snippets


$provider = new Netliferesearch\OAuth2\Client\Provider\Twist([
    'clientId'          => '{twist-client-id}',
    'clientSecret'      => '{twist-client-secret}',
    'redirectUri'       => 'https://example.com/callback-url'
]);

$existingAccessToken = getAccessTokenFromYourDataStore();

if ($existingAccessToken->hasExpired()) {
    $newAccessToken = $provider->getAccessToken('refresh_token', [
        'refresh_token' => $existingAccessToken->getRefreshToken()
    ]);

    // Purge old access token and store new access token to your data store.
}