新增验证码模板

POST
https://api.itniotech.com/otp/template/add
通过接口创建验证码模板。
 
请求参数
appId
String
必填
应用id,新增应用时返回
name
String
必填
模板名称,4-32字符,不允许重复
text
String
必填
模板内容,1-256字符,模板内容必须包含##code##
codeType
Int
必填
验证码类型:1.NUMERIC, 2.ALPHA, 3.ALPHANUMERIC, 4.HEX,默认1
codeLength
Int
验证码长度[4, 10],默认4
speechRate
Int
语速[0, 100],默认50
language
String
语言 { 中文:CN, 英语:EN, 越南语:VN, 日语:JP, 阿拉伯语:ARB, 德国:DE, 印地语:IN, 意大利:IT, 韩国:KR, 俄罗斯:RU, 西班牙:ES, 葡萄牙:PT, 印尼语:IDN, 孟加拉:BD }, 默认为EN
maxDuration
Int
最大通话时长[5,599]秒,默认59秒
repeatCnt
Int
播放次数[1,10],默认播放1次
senderId
String
发送者id
 
请求示例
Request URL:
    https://api.itniotech.com/otp/template/add
Request Method:
    POST
Request Headers:
    Content-Type: application/json;charset=UTF-8
    Sign: 05d7a50893e22a5c4bb3216ae3396c7c
    Timestamp: 1630468800
    Api-Key: bDqJFiq9
Request Body:
{
    "appId":"mRELxtHc",
    "name":"name",
    "text":"##code## is your verification,expires in 5 minutes! ",
    "codeType":1,
    "codeLength":4,
    "speechRate":50,
    "language":"EN",
    "maxDuration":59,
    "repeatCnt":1,
    "senderId":"senderId"
}
 
响应参数
参数 说明 类型
status 状态码,0成功,其他失败参见响应状态码说明 String
reason 失败原因说明 String
data 响应参数详情 JSONObject
templateId 模板id Int
appId 应用id String
name 模板名称 String
text 模板内容 String
codeType 验证码类型:1.NUMERIC, 2.ALPHA, 3.ALPHANUMERIC, 4.HEX Int
codeLength 验证码长度[4, 10] Int
speechRate 语速[0, 100] Int
language 语言{CN, EN, JP, VN} String
maxDuration 最大通话时长[5,599]秒, Int
repeatCnt 播放次数[1,10] Int
senderId 发送者id String
 
响应状态码
status 状态说明
0 成功
-1 账号认证异常
-2 ip限制
-16 时间戳过期
-18 系统异常
-20 数据已存在
-22 参数异常
 

LANGUAGE

Java

PHP

REQUEST

 import cn.hutool.crypto.SecureUtil;
 import cn.hutool.http.Header;
 import cn.hutool.http.HttpRequest;
 import cn.hutool.http.HttpResponse;
 import cn.hutool.json.JSONUtil;

 import java.time.LocalDateTime;
 import java.time.ZoneId;
 import java.util.Arrays;
 import java.util.HashMap;
 import java.util.Map;

private void addTemplate() {
    final String baseUrl = "https://api.itniotech.com/otp";
    final String apiKey = "your api key";
    final String apiPwd = "your api secret";
    final String appId = "{{appId}}"; //Application ID

    final String url = baseUrl.concat("/template/add");
    final String name = "{{name}}";
    final String text = "{{text}}";
    final Integer codeType = "{{codeType}}";
    final Integer codeLength = "{{codeLength}}";
    final Integer speechRate = "{{speechRate}}";
    final String language = "{{language}}";
    final Integer maxDuration = "{{maxDuration}}";
    final Integer repeatCnt = "{{repeatCnt}}";
    final String senderId = "{{senderId}}";

    System.out.println(url);
    HttpRequest request = HttpRequest.post(url);

    // currentTime
    final String datetime = String.valueOf(LocalDateTime.now().atZone(ZoneId.systemDefault()).toInstant().getEpochSecond());
    // generate md5 key
    final String sign = SecureUtil.md5(apiKey.concat(apiPwd).concat(datetime));
    request.header(Header.CONNECTION, "Keep-Alive")
            .header(Header.CONTENT_TYPE, "application/json;charset=UTF-8")
            .header("Sign", sign)
            .header("Timestamp", datetime)
            .header("Api-Key", apiKey);

    final String params = JSONUtil.createObj()
            .set("appId", appId)
            .set("name", name)
            .set("text", text)
            .set("codeType", codeType)
            .set("codeLength", codeLength)
            .set("speechRate", speechRate)
            .set("language", language)
            .set("maxDuration", maxDuration)
            .set("repeatCnt", repeatCnt)
            .set("senderId", senderId)
            .toString();
    HttpResponse response = request.body(params).execute();
    if (response.isOk()) {
        String result = response.body();
        System.out.println(result);
    }
} 

REQUEST

header('content-type:text/html;charset=utf8');

$apiKey = "your api key";
$apiSecret = "your api secret";
$appId = "{{appId}}";

$url = "https://api.itniotech.com/otp/template/add";

$timeStamp = time();
$sign = md5($apiKey.$apiSecret.$timeStamp);

$dataArr['appId'] = $appId;
$dataArr['name'] = "{{name}}";
$dataArr['text'] = "{{text}}";
$dataArr['codeType'] = "{{codeType}}";
$dataArr['codeLength'] = "{{codeLength}}";
$dataArr['speechRate'] = "{{speechRate}}";
$dataArr['language'] = "{{language}}";
$dataArr['maxDuration'] = "{{maxDuration}}";
$dataArr['repeatCnt'] = "{{repeatCnt}}";
$dataArr['senderId'] = "{{senderId}}";

$data = json_encode($dataArr);
$headers[] = 'Content-Type: application/json;charset=UTF-8';
$headers[] = "Sign: $sign";
$headers[] = "Timestamp: $timeStamp";
$headers[] = "Api-Key: $apiKey";

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 600);
curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);
curl_setopt($ch, CURLOPT_POSTFIELDS , $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);

$output = curl_exec($ch);
curl_close($ch);

var_dump($output);
 

RESPONSEEXAMPLE

{
    "status": "0",
    "reason": "success",
    "data": {
        "templateId":455,
        "appId":"mRELxtHc",
        "name":"name",
        "text":"##code## is your verification,expires in 5 minutes! ",
        "codeType":1,
        "codeLength":4,
        "speechRate":50,
        "language":"EN",
        "maxDuration":59,
        "repeatCnt":1,
        "senderId":"senderId"
    }
}