12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace app\common\library;
- use AlibabaCloud\Client\AlibabaCloud;
- use AlibabaCloud\Vod\Vod;
- use AlibabaCloud\Client\Exception\ClientException;
- use AlibabaCloud\Client\Exception\ServerException;
- class Video
- {
- protected $accessKeyId = '';
- protected $accessKeySecret = '';
- public function __construct(){
- define("VOD_CLIENT_NAME", 'AliyunVodClientDemo');
- $this->accessKeyId = 'LTAI5t5kfj2Efg6YA7awDUoP';
- $this->accessKeySecret = 't5HZA7628nQv9tGv0y50AOoMfgMYkl';
- $this->initVodClient();
- }
- //初始化
- public function initVodClient() {
- $regionId = 'cn-beijing';
- //填入AccessKey信息
- AlibabaCloud::accessKeyClient($this->accessKeyId, $this->accessKeySecret)
- ->regionId($regionId)
- ->connectTimeout(1)
- ->timeout(3)
- ->name(VOD_CLIENT_NAME);
- }
- //GetPlayInfo
- public function getPlayInfo($videoId) {
- return Vod::v20170321()->getPlayInfo()->client(VOD_CLIENT_NAME)
- ->withVideoId($videoId) // 指定接口参数
- ->withAuthTimeout(3600*24)
- ->format('JSON') // 指定返回格式
- ->request(); // 执行请求
- }
- /**
- * @throws ClientException
- * @throws ServerException
- */
- public function getVideoPlayAuth($videoId) {
- return Vod::v20170321()->getVideoPlayAuth()->client(VOD_CLIENT_NAME)
- ->withVideoId($videoId) // 指定音/视频ID
- ->withAuthInfoTimeout(3600)
- ->format('JSON') // 指定返回格式
- ->request(); // 执行请求
- }
- }
|