聚美智数


汉字转换

<p>[TOC]</p> <h3>1 接口调用说明</h3> <p>对汉字进行各种转换。包含汉字转拼音、简体转繁体、繁体转简体、半角转全角、全角转半角。</p> <h4>1.1 请求方式</h4> <p>如接口没有单独说明,所有接口均为:<strong>POST</strong></p> <h4>1.2 请求格式</h4> <p>如接口没有单独说明,所有接口均为:<strong>application/x-www-form-urlencoded</strong></p> <h4>1.3 请求参数</h4> <p>请求参数包括公共参数和业务参数(业务参数见具体接口说明) 调用接口时,需要把<strong>公共参数</strong>和<strong>业务参数</strong>一并放在<strong>请求参数</strong>中提交</p> <h5>1.3.1 公共请求参数</h5> <table> <thead> <tr> <th>名称</th> <th>类型</th> <th>必须</th> <th>&lt;div style=&quot;width:420px;&quot;&gt;说明&lt;/div&gt;</th> </tr> </thead> <tbody> <tr> <td>appId</td> <td>String</td> <td>是</td> <td>服务商分配的唯一标识</td> </tr> <tr> <td>timestamp</td> <td>Long</td> <td>是</td> <td>当前时间戳(毫秒)</td> </tr> <tr> <td>sign</td> <td>String</td> <td>是</td> <td>签名,详见&lt;a href=&quot;#签名算法&quot;&gt;签名算法说明&lt;/a&gt;</td> </tr> </tbody> </table> <p>&lt;a name=&quot;签名算法&quot;&gt;&lt;/a&gt;</p> <h5>1.3.2 签名算法说明</h5> <pre><code>sign = sha256(appId + appSecret + timestamp)</code></pre> <p>用服务商分配的 <strong>appId</strong>、服务商分配的 <strong>appSecret</strong>,当前时间戳(毫秒) <strong>timestamp</strong>,按上述顺序拼接成字符串,再进行 <strong>sha256</strong> 哈希得到。如下:</p> <pre><code class="language-java">String appId = &amp;quot;xyzxy2121zxyz&amp;quot;; String timestamp = &amp;quot;1555378976238&amp;quot;; String appSecret = &amp;quot;efcefcef1121cefcefc1212121&amp;quot;; String str = appId + appSecret + timestamp; String sign = sha256(str);</code></pre> <h4>1.4 返回说明</h4> <h5>1.4.1 公共返回字段说明</h5> <p>所有接口均返回以下公共字段:</p> <table> <thead> <tr> <th>字段名</th> <th>&lt;div style=&quot;width:420px&quot;&gt;说明&lt;/div&gt;</th> </tr> </thead> <tbody> <tr> <td>code</td> <td>返回码,详见:code返回码说明</td> </tr> <tr> <td>msg</td> <td>code对应的描述</td> </tr> <tr> <td>charge</td> <td>计费标志 true为计费,false为不计费</td> </tr> <tr> <td>taskNo</td> <td>本次请求号</td> </tr> <tr> <td>data</td> <td>返回具体结果,object类型,详见data返回字段描述</td> </tr> </tbody> </table> <p>&lt;a name=&quot;code返回码说明&quot;&gt;&lt;/a&gt;</p> <h5>1.4.2 code返回码说明</h5> <table> <thead> <tr> <th>code</th> <th>&lt;div style=&quot;width:420px;&quot;&gt;说明&lt;/div&gt;</th> </tr> </thead> <tbody> <tr> <td>200</td> <td>成功</td> </tr> <tr> <td>201</td> <td>查无数据</td> </tr> <tr> <td>400</td> <td>参数错误</td> </tr> <tr> <td>404</td> <td>接口地址不正确</td> </tr> <tr> <td>500</td> <td>系统维护,请稍候再试</td> </tr> <tr> <td>601</td> <td>接口未开通</td> </tr> <tr> <td>602</td> <td>账号停用</td> </tr> <tr> <td>604</td> <td>接口停用</td> </tr> <tr> <td>606</td> <td>调用超限,请稍候再试</td> </tr> <tr> <td>607</td> <td>ip不在白名单</td> </tr> <tr> <td>609</td> <td>请求过于频繁,请稍候再试</td> </tr> <tr> <td>610</td> <td>请求超时</td> </tr> <tr> <td>999</td> <td>其他,以实际返回为准</td> </tr> </tbody> </table> <hr /> <h3>2 汉字转换-汉字转拼音</h3> <h4>2.1 接口描述</h4> <ul> <li>将汉字转成拼音</li> </ul> <h4>2.2 请求地址</h4> <p><code>https://api.jumdata.com/chinese-convert/cn-to-piny</code></p> <h4>2.3 业务参数</h4> <table> <thead> <tr> <th>名称</th> <th>类型</th> <th>必须</th> <th>&lt;div style=&quot;width:420px;&quot;&gt;说明&lt;/div&gt;</th> </tr> </thead> <tbody> <tr> <td>content</td> <td>String</td> <td>是</td> <td>需要转换的中文字符串</td> </tr> </tbody> </table> <h4>2.4 成功返回样例</h4> <pre><code class="language-json">{ &amp;quot;code&amp;quot;: 200,//返回码,详见返回码说明 &amp;quot;msg&amp;quot;: &amp;quot;成功&amp;quot;,//返回码对应描述 &amp;quot;taskNo&amp;quot;: &amp;quot;943561559146746068049664&amp;quot;,//本次请求号 &amp;quot;charge&amp;quot;: true,//计费标志 &amp;quot;data&amp;quot;: { &amp;quot;simple&amp;quot;: &amp;quot;h z&amp;quot;,//简写拼音 &amp;quot;pinyin&amp;quot;: &amp;quot;han zhong&amp;quot; //拼音信息,中间用空格隔开 } }</code></pre> <h4>2.5 失败返回样例</h4> <pre><code class="language-json">{ &amp;quot;msg&amp;quot;: &amp;quot;需要转换的中文字符串不能为空&amp;quot;, &amp;quot;code&amp;quot;: 400, &amp;quot;charge&amp;quot;: false }</code></pre> <hr /> <h3>3 汉字转换-简体转繁体</h3> <h4>3.1 接口描述</h4> <ul> <li>将简体字转换成繁体字</li> </ul> <h4>3.2 请求地址</h4> <p><code>https://api.jumdata.com/chinese-convert/simplified-to-traditional</code></p> <h4>3.3 业务参数</h4> <table> <thead> <tr> <th>名称</th> <th>类型</th> <th>必须</th> <th>&lt;div style=&quot;width:420px;&quot;&gt;说明&lt;/div&gt;</th> </tr> </thead> <tbody> <tr> <td>content</td> <td>String</td> <td>是</td> <td>需要转换的中文字符串</td> </tr> </tbody> </table> <h4>3.4 成功返回样例</h4> <pre><code class="language-json">{ &amp;quot;code&amp;quot;: 200,//返回码,详见返回码说明 &amp;quot;msg&amp;quot;: &amp;quot;成功&amp;quot;,//返回码对应描述 &amp;quot;taskNo&amp;quot;: &amp;quot;658579500175244274321062&amp;quot;,//本次请求号 &amp;quot;charge&amp;quot;: true,//计费标志 &amp;quot;data&amp;quot;: { &amp;quot;result&amp;quot;: &amp;quot;漢中&amp;quot; //转换后的字符串 } }</code></pre> <h4>3.5 失败返回样例</h4> <pre><code class="language-json">{ &amp;quot;msg&amp;quot;: &amp;quot;需要转换的中文字符串不能为空&amp;quot;, &amp;quot;code&amp;quot;: 400, &amp;quot;charge&amp;quot;: false }</code></pre> <hr /> <h3>4 汉字转换-繁体转简体</h3> <h4>4.1 接口描述</h4> <ul> <li>将繁体字转换成简体字</li> </ul> <h4>4.2 请求地址</h4> <p><code>https://api.jumdata.com/chinese-convert/traditional-to-simplified</code></p> <h4>4.3 业务参数</h4> <table> <thead> <tr> <th>名称</th> <th>类型</th> <th>必须</th> <th>&lt;div style=&quot;width:420px;&quot;&gt;说明&lt;/div&gt;</th> </tr> </thead> <tbody> <tr> <td>content</td> <td>String</td> <td>是</td> <td>需要转换的中文字符串</td> </tr> </tbody> </table> <h4>4.4 成功返回样例</h4> <pre><code class="language-json">{ &amp;quot;code&amp;quot;: 200,//返回码,详见返回码说明 &amp;quot;msg&amp;quot;: &amp;quot;成功&amp;quot;,//返回码对应描述 &amp;quot;taskNo&amp;quot;: &amp;quot;658579500175244274321062&amp;quot;,//本次请求号 &amp;quot;charge&amp;quot;: true,//计费标志 &amp;quot;data&amp;quot;: { &amp;quot;result&amp;quot;: &amp;quot;汉中&amp;quot; //转换后的字符串 } }</code></pre> <h4>4.5 失败返回样例</h4> <pre><code class="language-json">{ &amp;quot;msg&amp;quot;: &amp;quot;需要转换的中文字符串不能为空&amp;quot;, &amp;quot;code&amp;quot;: 400, &amp;quot;charge&amp;quot;: false }</code></pre> <hr /> <h3>5 汉字转换-半角转全角</h3> <h4>5.1 接口描述</h4> <ul> <li>将半角转全角</li> </ul> <h4>5.2 请求地址</h4> <p><code>https://api.jumdata.com/chinese-convert/halfangle-to-fullwidth</code></p> <h4>5.3 业务参数</h4> <table> <thead> <tr> <th>名称</th> <th>类型</th> <th>必须</th> <th>&lt;div style=&quot;width:420px;&quot;&gt;说明&lt;/div&gt;</th> </tr> </thead> <tbody> <tr> <td>content</td> <td>String</td> <td>是</td> <td>需要转换的中文字符串</td> </tr> </tbody> </table> <h4>5.4 成功返回样例</h4> <pre><code class="language-json">{ &amp;quot;code&amp;quot;: 200,//返回码,详见返回码说明 &amp;quot;msg&amp;quot;: &amp;quot;成功&amp;quot;,//返回码对应描述 &amp;quot;taskNo&amp;quot;: &amp;quot;658579500175244274321064&amp;quot;,//本次请求号 &amp;quot;charge&amp;quot;: true,//计费标志 &amp;quot;data&amp;quot;: { &amp;quot;result&amp;quot;: &amp;quot;汉中)&amp;quot; //转换后的字符串 } }</code></pre> <h4>5.5 失败返回样例</h4> <pre><code class="language-json">{ &amp;quot;msg&amp;quot;: &amp;quot;需要转换的中文字符串不能为空&amp;quot;, &amp;quot;code&amp;quot;: 400, &amp;quot;charge&amp;quot;: false }</code></pre> <hr /> <h3>6 汉字转换-全角转半角</h3> <h4>6.1 接口描述</h4> <ul> <li>将全角转半角</li> </ul> <h4>6.2 请求地址</h4> <p><code>https://api.jumdata.com/chinese-convert/fullwidth-to-halfangle</code></p> <h4>6.3 业务参数</h4> <table> <thead> <tr> <th>名称</th> <th>类型</th> <th>必须</th> <th>&lt;div style=&quot;width:420px;&quot;&gt;说明&lt;/div&gt;</th> </tr> </thead> <tbody> <tr> <td>content</td> <td>String</td> <td>是</td> <td>需要转换的中文字符串</td> </tr> </tbody> </table> <h4>6.4 成功返回样例</h4> <pre><code class="language-json">{ &amp;quot;code&amp;quot;: 200,//返回码,详见返回码说明 &amp;quot;msg&amp;quot;: &amp;quot;成功&amp;quot;,//返回码对应描述 &amp;quot;taskNo&amp;quot;: &amp;quot;658579500175244274321072&amp;quot;,//本次请求号 &amp;quot;charge&amp;quot;: true,//计费标志 &amp;quot;data&amp;quot;: { &amp;quot;result&amp;quot;: &amp;quot;汉中)&amp;quot; //转换后的字符串 } }</code></pre> <h4>6.5 失败返回样例</h4> <pre><code class="language-json">{ &amp;quot;msg&amp;quot;: &amp;quot;需要转换的中文字符串不能为空&amp;quot;, &amp;quot;code&amp;quot;: 400, &amp;quot;charge&amp;quot;: false }</code></pre>

页面列表

ITEM_HTML