https://acrobat.adobe.com/us/en/sign.html
This package provides Adobe Sign OAuth 2.0 support for The PHP League's OAuth 2.0 Client.
The following versions of PHP are supported:
- PHP 8.1
- PHP 8.0
- PHP 7.4
- PHP 7.3
To install, use composer:
composer require mettle/oauth2-adobe-sign
Use The League's OAuth2 Client with \Mettle\OAuth2\Client\AdobeSign
as the provider.
$provider = new Mettle\OAuth2\Client\AdobeSign([
'clientId' => 'your_client_id',
'clientSecret' => 'your_client_secret',
'redirectUri' => 'your_callback',
'dataCenter' => 'secure.na1',
'scope' => [
'scope1:type',
'scope2:type'
]
]);
The MIT License (MIT). Please see LICENSE for more information.