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
329 B
14 lines
329 B
<?php
|
|
|
|
require('../../vendor/autoload.php');
|
|
|
|
use Volc\Service\GameProduct;
|
|
|
|
$client = GameProduct::getInstance();
|
|
|
|
// call below method if you dont set ak and sk in ~/.volc/config
|
|
$client->setAccessKey("ak");
|
|
$client->setSecretKey("sk");
|
|
|
|
$response = $client->riskResult(218745, 1618502400, 1618545491, 10, 1);
|
|
echo $response; |