|
...
|
...
|
@@ -55,7 +55,7 @@ class AiVideoService |
|
|
|
*/
|
|
|
|
public function createTask($title,$description,$images = [],$anchor = []){
|
|
|
|
$request_url = $this->url.'api/video/create';
|
|
|
|
$param = ['title'=>$title, 'description'=>$description, 'images'=>json_encode($images,true),'anchor'=>json_encode($anchor,true)];
|
|
|
|
$param = ['title'=>$title, 'description'=>$description, 'images'=>$images,'anchor'=>$anchor];
|
|
|
|
$param['mch_id'] = $this->mch_id;
|
|
|
|
$this->sign = $this->generateSign($param,$this->key);
|
|
|
|
$param['sign'] = $this->sign;
|
...
|
...
|
|