You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
302 B
14 lines
302 B
6 months ago
|
<?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->PauseTask("0742e8123ada40cb9efa6b55e8fced7a");
|
||
|
echo $response;
|