PHP code example of bda-matt / oauth2-adobe-sign
1. Go to this page and download the library: Download bda-matt/oauth2-adobe-sign 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/ */
bda-matt / oauth2-adobe-sign example snippets
$provider = new KevinEm\OAuth2\Client\AdobeSign([
'clientId' => 'your_client_id',
'clientSecret' => 'your_client_secret',
'redirectUri' => 'your_callback',
'dataCenter' => 'secure.na1',
'scope' => [
'scope1:type',
'scope2:type'
]
]);