This package provides ANAF OAuth 2.0 support for the PHP League's OAuth 2.0 Client.
To install, use composer:
composer require andalisolutions/oauth2-anaf
Usage is the same as The League's OAuth client, using \Anaf\OAuth2\Client\Provider\AnafProvider
as the provider.
$provider = new Anaf\OAuth2\Client\Provider\AnafProvider(
clientId: '{anaf-client-id}',
clientSecret: '{anaf-client-secret}',
redirectUrl: 'https://example.com/callback-url',
);
// Redirect to the authorization URL
$authorizationUrl = $provider->getAuthorizationUrl();
header('Location: ' . $authorizationUrl);
// This part will be in your callback script
if (isset($_GET['code'])) {
try {
$accessToken = $provider->getAccessToken('authorization_code', [
'code' => $_GET['code'],
]);
// We have an access token, which we may use in authenticated
// requests against the service provider's API.
echo 'Access Token: ' . $accessToken->getToken() . "<br>";
echo 'Refresh Token: ' . $accessToken->getRefreshToken() . "<br>";
echo 'Expired in: ' . $accessToken->getExpires() . "<br>";
echo 'Already expired? ' . ($accessToken->hasExpired() ? 'expired' : 'not expired') . "<br>";
} catch (Exception $e) {
// Handle errors, such as an invalid code
}
}
composer test
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.