// Code generated by protoc-gen-volcengine-sdk // source: getPrivateDrmPlayAuth // DO NOT EDIT! setAccessKey('your ak'); $client->setSecretKey('your sk'); $request = new Volc\Service\Vod\Models\Request\VodGetPrivateDrmPlayAuthRequest(); $request->setDrmType("your DrmType"); $request->setVid("your Vid"); $request->setPlayAuthIds("your PlayAuthIds"); $request->setUnionInfo("your UnionInfo"); $response = new Volc\Service\Vod\Models\Response\VodGetPrivateDrmPlayAuthResponse(); try { $response = $client->getPrivateDrmPlayAuth($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"; }