13 lines
302 B
PHP
Raw Normal View History

2025-03-12 10:47:34 +08:00
<?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");
$response = $client->ResumeTask("0742e8123ada40cb9efa6b55e8fced7a");
echo $response;