1. Go to this page and download the library: Download westng/oceanengine-sdk-php 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/ */
westng / oceanengine-sdk-php example snippets
declare(strict_types=1);
/**
* This file is part of Marketing PHP SDK.
*
* @link https://github.com/westng/oceanengine-sdk-php
* @document https://github.com/westng/oceanengine-sdk-php
* @contact westng
* @license https://github.com/westng/oceanengine-sdk-php/blob/main/LICENSE
*/
use Core\Exception\OceanEngineException;
use OceanEngineSDK\OceanEngineAuth;
catch (OceanEngineException $e) {
echo '错误类型: ' . $e->getErrorType() . PHP_EOL;
echo '错误码: ' . $e->getErrorCode() . PHP_EOL;
echo '错误信息: ' . $e->getErrorMessage() . PHP_EOL;
exit(1);
}
}
}
GetAuthCodeUrl::run();
declare(strict_types=1);
/**
* This file is part of Marketing PHP SDK.
*
* @link https://github.com/westng/oceanengine-sdk-php
* @document https://github.com/westng/oceanengine-sdk-php
* @contact westng
* @license https://github.com/westng/oceanengine-sdk-php/blob/main/LICENSE
*/
use Core\Exception\OceanEngineException;
use OceanEngineSDK\OceanEngineAuth;
echo '错误类型: ' . $e->getErrorType() . PHP_EOL;
echo '错误码: ' . $e->getErrorCode() . PHP_EOL;
echo '错误信息: ' . $e->getErrorMessage() . PHP_EOL;
exit(1);
}
}
}
RefreshToken::run();