I'm trying to upload video file in aliyun OSS bucket as you know video are big in size so in that case page start to loading and keep loading until file upload successfully.
Can I make it asynchronously, when I send the request to aliyun it will start a background process instead of keep loading the page.
Here is code
try {
$ossClient = new OssClient($accessKeyId, $accessKeySecret, $endpoint);
$ossClient->multiuploadFile($bucket, $object, $filePath);
} catch (OssException $e) {
print $e->getMessage();
}
Thanks