123456789101112131415161718 |
- <?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 = [
- 'Type' => 0,
- ];
- $response = $client->QueryResource($body);
- echo $response;
|