配额频控管理
更新时间:2022-07-21
查询配额频控
通过以下代码可以查看配额和频控详情
try {
$resp = $this->client->getQuotaRate();
} catch (Exception $exception) {
print_r($exception);
}
提示:详细的参数配置及限制条件,可以参考SMS API详情查询配额及频控
变更配额频控
通过以下代码可以变更配额或频控
try {
$this->client->updateQuotaRate($quotaPerDay, $quotaPerMonth, $rateLimitPerMobilePerSignByMinute,
$rateLimitPerMobilePerSignByHour, $rateLimitPerMobilePerSignByDay);
} catch (Exception $exception) {
print_r($exception);
}
提示:详细的参数配置及限制条件,可以参考SMS API详情变更配额或频控