'domain',
'SceneType' => 'push',
"AuthDetailList" => [
[
"EncryptionAlgorithm" => "md5",
"SecretKey" => "xx",
],
],
];
$response = $client->updateAuthKey(['json' => $body]);
echo $response;
echo '
';
$body = [
'Domain' => 'domain',
'SceneType' => 'push'
];
$response = $client->describeAuth(['json' => $body]);
echo $response;
echo '
';
$body = [
'Domain' => 'domain',
'App' => 'app',
'RefererInfoList' => [
[
'Key' => 'asd',
'Type' => 'xx',
'Value' => 'sad',
'Priority' => 0,
],
],
];
$response = $client->updateReferer(['json' => $body]);
echo $response;
echo '
';
$body = [
'Domain' => 'domain',
'App' => 'app',
];
$response = $client->describeReferer(['json' => $body]);
echo $response;
echo '
';
$body = [
'Vhost' => 'vv',
'App' => 'app',
];
$response = $client->deleteReferer(['json' => $body]);
echo $response;
echo '
';