12345678910111213141516171819202122232425262728293031323334 |
- // Code generated by protoc-gen-volcengine-sdk
- // source: DescribeLiveStreamInfoByPage
- // DO NOT EDIT!
- <?php
- require('../../vendor/autoload.php');
- $client = Volc\Service\Live\Live::getInstance();
- $client->setAccessKey('your ak');
- $client->setSecretKey('your sk');
- $request = new Volc\Service\Live\Models\Request\DescribeLiveStreamInfoByPageRequest();
- $request->setPageNum(0);
- $request->setPageSize(0);
- $request->setVhost("your Vhost");
- $request->setDomain("your Domain");
- $request->setApp("your App");
- $request->setStream("your Stream");
- $request->setStreamType("your StreamType");
- $request->setInfoType("your InfoType");
- $response = new Volc\Service\Live\Models\Response\DescribeLiveStreamInfoByPageResponse();
- try {
- $response = $client->DescribeLiveStreamInfoByPage($request);
- } catch (Exception $e) {
- echo $e, "\n";
- } catch (Throwable $e) {
- echo $e, "\n";
- }
- if ($response != null && $response->getResponseMetadata() != null && $response->getResponseMetadata()->getError() != null) {
- echo $response->getResponseMetadata()->getError()->serializeToJsonString(), "\n";
- } else {
- echo $response->serializeToJsonString(), "\n";
- }
|