1234567891011121314151617181920 |
- <?php
- use Volc\Service\Notify;
- require('../../../vendor/autoload.php');
- require('../../src/Service/Notify.php');
- $client = Notify::getInstance();
- $client->setAccessKey("your ak");
- $client->setSecretKey("your sk");
- $body = [
- 'FileName'=>'mytest.mp3'
- ];
- $response = $client->GetResourceUploadUrl($body);
- echo $response;
|