31 lines
		
	
	
		
			1012 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			31 lines
		
	
	
		
			1012 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								// Code generated by protoc-gen-volcengine-sdk
							 | 
						||
| 
								 | 
							
								// source: createVideoClassification
							 | 
						||
| 
								 | 
							
								// DO NOT EDIT!
							 | 
						||
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								require('../../vendor/autoload.php');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$client = Volc\Service\Vod\Vod::getInstance();
							 | 
						||
| 
								 | 
							
								$client->setAccessKey('your ak');
							 | 
						||
| 
								 | 
							
								$client->setSecretKey('your sk');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$request = new Volc\Service\Vod\Models\Request\VodCreateVideoClassificationRequest();
							 | 
						||
| 
								 | 
							
								$request->setSpaceName("your SpaceName");
							 | 
						||
| 
								 | 
							
								$request->setLevel(0);
							 | 
						||
| 
								 | 
							
								$request->setParentId(0);
							 | 
						||
| 
								 | 
							
								$request->setClassification("your Classification");
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$response = new Volc\Service\Vod\Models\Response\VodCreateVideoClassificationResponse();
							 | 
						||
| 
								 | 
							
								try {
							 | 
						||
| 
								 | 
							
								    $response = $client->createVideoClassification($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";
							 | 
						||
| 
								 | 
							
								}
							 |