签名管理
更新时间:2022-07-21
申请签名
通过以下代码可以申请一个SMS签名:
try {
$resp = $this->client->createSignature($content, $contentType, $countryType);
} catch (Exception $exception) {
print_r($exception);
}
提示:详细的参数配置及限制条件,可以参考SMS API详情申请签名
获取签名详情
通过以下代码,可以获取一个SMS签名详情:
try {
$this->client->updateSignature($signatureId, $content, $contentType, $countryType);
} catch (Exception $exception) {
print_r($exception);
}
提示:详细的参数配置及限制条件,可以参考SMS API详情查询签名
变更签名
通过以下代码,可以更新指定的签名:
try {
$this->client->getSignatureDetail($signatureId);
} catch (Exception $exception) {
print_r($exception);
}
提示:详细的参数配置及限制条件,可以参考SMS API详情变更签名
删除签名
通过以下代码,可以删除指定的签名:
try {
$this->client->deleteSignature($signatureId);
} catch (Exception $exception) {
print_r($exception);
}
提示:详细的参数配置及限制条件,可以参考SMS API详情删除签名