动态令牌校验

# 动态令牌校验 用户可采用"动态令牌校验"的方式进行API接口的调用。 在调用API接口前,用户需先调用"[申请动态令牌](doc:LUDzcMVE)"获取动态令牌token。然后在后面的接口调用中,只需向接口传入token值,即可完成身份校验。 使用该方法调用API接口,能大大**提高接口调用效率**,且**安全性较高**,因此**推荐使用**动态令牌方式。 ## Sign的属性值 身份校验信息"Sign"中,需要包含以下属性。 |属性名称|数据类型|说明| |-|-|-| |token|String|动态令牌| ## API接口调用流程 ![22.png](https://cos.easydoc.net/11442231/files/km5pvhhe.png) ## 调用API接口 ```JavaScript var sign = { "token": "xxxxxxxxxxxx" //动态令牌 }; var settings = { "url": "API接口地址", "method": "POST", "timeout": 0, "headers": { "Content-Type": "application/x-www-form-urlencoded" }, "data": { "account": "88.168.xxx", //标识前缀 "jsonData": "xxxxxxxxxxxx", //接口参数数据 "sign": JSON.stringify(sign) //身份校验信息 } }; $.ajax(settings).done(function (response) { console.log(response); }); ```