02-获取token
<h3>1、请求URL</h3>
<pre><code class="language-html">http://{ip}/api/cus/token/auth/getToken</code></pre>
<h3>2、请求方式</h3>
<pre><code class="language-html">post</code></pre>
<h3>3、内容格式</h3>
<pre><code class="language-html">application/json</code></pre>
<h3>4、参数说明</h3>
<h4>4.1 请求参数:</h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必须</th>
<th>类型</th>
<th>说明</th>
<th>备注</th>
</tr>
</thead>
<tbody>
<tr>
<td>appid</td>
<td>是</td>
<td>String</td>
<td>应用id</td>
<td>请求头参数</td>
</tr>
<tr>
<td>sign</td>
<td>是</td>
<td>String</td>
<td>签名,参考4.2(有效期5分钟)</td>
<td>请求头参数</td>
</tr>
</tbody>
</table>
<h4>4.2 sign示例(JAVA)</h4>
<pre><code class="language-json">package weaver.demo;
import cn.hutool.crypto.SecureUtil;
import cn.hutool.crypto.symmetric.AES;
/**
* Sign生成示例
*
* @author: Weaver_Xm
*/
public class MainTest {
public static void main(String[] args) {
//应用标识--&gt;&gt;泛微提供
String appid = &quot;weaverappid&quot;;
//应用密钥--&gt;&gt;泛微提供
String secret = &quot;weaversecret&quot;;
//AES密钥--&gt;&gt;泛微提供
String key = &quot;8fy6K39X6PIEEeOq&quot;;
//MD5加密对象:appid+secret,以冒号连接;
String md5Encrypt = SecureUtil.md5(appid + &quot;:&quot; + secret).toUpperCase();
//构建AES加密、加密模式ECB 补码方式:PKCS5Padding
AES aes = SecureUtil.aes(key.getBytes());
//生成签名:毫秒级时间戳+MD5加密串,以下划线连接;
String sign = aes.encryptHex(System.currentTimeMillis() + &quot;_&quot; + md5Encrypt);
System.out.println(&quot;sign ===&gt;&gt;&gt;&quot; + sign);
}
}
</code></pre>
<h4>4.3 postman示例</h4>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitfile/sign/ab7390832630068293d1b280b65f712c" alt="" /></p>
<h4>4.4 AES加密说明</h4>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=5b25756ef015a40c79d5f9ee778beb91" alt="" /></p>
<h3>5、请求结果</h3>
<h4>5.1 返回成功示例</h4>
<pre><code class="language-json">{
&quot;batchkey&quot;: &quot;amoy_token_auth_1742369234096_vvkm&quot;,
&quot;msg&quot;: &quot;获取成功!&quot;,
&quot;status&quot;: true,
&quot;token&quot;: &quot;fdca51c0-2225-4ad9-ac18-bd2b61408b99&quot;
}</code></pre>
<h4>5.2 返回失败示例</h4>
<pre><code class="language-json">{
&quot;batchkey&quot;: &quot;amoy_token_auth_1742368947452_3sfv&quot;,
&quot;msg&quot;: &quot;应用标识appid==&gt;&gt;weaverappid已被禁用,请联系管理员!!!&quot;,
&quot;status&quot;: false
}</code></pre>
<h4>5.3 返回失败示例</h4>
<pre><code class="language-json">{
&quot;batchkey&quot;: &quot;amoy_token_auth_1742368947452_3sfv&quot;,
&quot;msg&quot;: &quot;appid或sign参数值异常!!!&quot;,
&quot;status&quot;: false
}</code></pre>
<h4>5.4 返回失败示例</h4>
<pre><code class="language-json">{
&quot;batchkey&quot;: &quot;amoy_token_auth_1742368947452_3sfv&quot;,
&quot;msg&quot;: &quot;禁用重复签名获取token,请确认!!!&quot;,
&quot;status&quot;: false
}</code></pre>
<h4>5.5 返回失败示例</h4>
<pre><code class="language-json">{
&quot;batchkey&quot;: &quot;amoy_token_auth_1742368947452_3sfv&quot;,
&quot;msg&quot;: &quot;签名解密异常,请确认!!!&quot;,
&quot;status&quot;: false
}</code></pre>
<h4>5.6 返回失败示例</h4>
<pre><code class="language-json">{
&quot;batchkey&quot;: &quot;amoy_token_auth_1742368947452_3sfv&quot;,
&quot;msg&quot;: &quot;签名已过期,请确认!!!&quot;,
&quot;status&quot;: false
}</code></pre>
<h4>5.7 返回参数说明</h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>batchkey</td>
<td>string</td>
<td>业务批次key,日志分析用</td>
</tr>
<tr>
<td>status</td>
<td>boolean</td>
<td>响应状态。true:成功,false:失败</td>
</tr>
<tr>
<td>msg</td>
<td>string</td>
<td>响应信息</td>
</tr>
<tr>
<td>token</td>
<td>string</td>
<td>token信息(默认30分钟内有效)</td>
</tr>
</tbody>
</table>