worksection / oauth2-wrike
Wrike OAuth 2.0 support for the PHP League's OAuth 2.0 Client
Installs: 2 159
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.2
- league/oauth2-client: ^2.0
Requires (Dev)
- mockery/mockery: ^1.3.5
- phpunit/phpunit: ^5.7 || ^6.0 || ^9.5
This package is not auto-updated.
Last update: 2024-11-06 18:08:32 UTC
README
This package provides Wrike OAuth 2.0 support for the PHP League's OAuth 2.0 Client.
NOTE: since 2.x only Wrike's v4 API is supported (prior versions support Wrike's v3 API)
Installation
composer require worksection/oauth2-wrike
Usage
$wrikeProvider = new \Worksection\OAuth2\Client\Provider\Wrike([ 'clientId' => 'yourId', // The client ID assigned to you by Wrike 'clientSecret' => 'yourSecret', // The client password assigned to you by the provider 'redirectUri' => '' ]); // Get authorization code if (!isset($_GET['code'])) { // Get authorization URL $authorizationUrl = $wrikeProvider->getAuthorizationUrl(); // Get state and store it to the session $_SESSION['oauth2state'] = $wrikeProvider->getState(); // Redirect user to authorization URL header('Location: ' . $authorizationUrl); exit; // Check for errors } elseif (empty($_GET['state']) || (isset($_SESSION['oauth2state']) && $_GET['state'] !== $_SESSION['oauth2state'])) { if (isset($_SESSION['oauth2state'])) { unset($_SESSION['oauth2state']); } exit('Invalid state'); } else { // Get access token try { $accessToken = $wrikeProvider->getAccessToken( 'authorization_code', [ 'code' => $_GET['code'] ] ); } catch (\League\OAuth2\Client\Provider\Exception\IdentityProviderException $e) { exit($e->getMessage()); } // Get resource owner try { $resourceOwner = $wrikeProvider->getResourceOwner($accessToken); } catch (\League\OAuth2\Client\Provider\Exception\IdentityProviderException $e) { exit($e->getMessage()); } // Now you can store the results to session ... $_SESSION['accessToken'] = $accessToken; $_SESSION['resourceOwner'] = $resourceOwner; // ... or do some API request $folderId = 'yourFolderId'; $request = $wrikeProvider->getAuthenticatedRequest( 'GET', 'https://www.wrike.com/api/v3/folders/' . $folderId . '/folders', $accessToken ); try { $response = $wrikeProvider->getParsedResponse($request); } catch (\League\OAuth2\Client\Provider\Exception\IdentityProviderException $e) { exit($e->getMessage()); } var_dump($response['data']); }
For more information see the PHP League's general usage examples.
Testing
$ ./vendor/bin/phpunit
License
The MIT License (MIT).