盟云权益对接

API文档


签名规范

<p>&lt;h3 id=&quot;h3-u5E73u53F0u7B80u4ECB&quot;&gt;&lt;a name=&quot;需要注意以下重要规则:&quot; class=&quot;reference-link&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;需要注意以下重要规则:&lt;/h3&gt; &lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:red;&quot;&gt;◆ 请求参数参数名ASCII码从小到大排序,签名内容需要UTF-8编码 ◆ 请求Body参数为空时传{},并且data使用{}参与签名; ◆ 请求参数和签名内容需要UTF-8编码; ◆ 回调地址请原样进行签名;</p> <p>&lt;h3 id=&quot;h3-u5E73u53F0u7B80u4ECB&quot;&gt;&lt;a name=&quot;签名计算方式::&quot; class=&quot;reference-link&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;签名计算方式:&lt;/h3&gt;</p> <pre><code>sign生成规则: sha1(time+data+apikey) 为了防止请求被伪造、篡改,每一次接口请求都需传入根据本次请求的 13位时间戳(毫秒)+body参数(json格式)+apikey(密钥) 计算获得的sign(签名)</code></pre> <p>&lt;h3 id=&quot;h3-u5E73u53F0u7B80u4ECB&quot;&gt;&lt;a name=&quot;<strong>签名示例(php):&quot; class=&quot;reference-link&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;</strong>签名示例(php):**&lt;/h3&gt;</p> <pre><code>```php public function sign($post = [], $key =&amp;#039;&amp;#039;,$userid = &amp;#039;&amp;#039;) { if ($post) { ksort($post); //排序post参数 $post = json_encode($post , JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE); } else { $post = &amp;quot;{}&amp;quot;; } $time = time() . rand(100, 999); $header[] = &amp;quot;Content-Type: application/json; charset=utf-8&amp;quot;; //用户密钥 $header[] = &amp;quot;Sign: &amp;quot; . sha1($time . $post . $key); $header[] = &amp;quot;Timestamp: &amp;quot; . $time; //用户ID $header[] = &amp;quot;UserId: &amp;quot; . $userid; return [$post, $header]; }</code></pre> <p>&lt;h3 id=&quot;h3-u5E73u53F0u7B80u4ECB&quot;&gt;&lt;a name=&quot;**接口约定(每次请求需传入以下Header参数:):&quot; class=&quot;reference-link&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;接口约定(每次请求需传入以下Header参数:):&lt;/h3&gt;</p> <table> <thead> <tr> <th style="text-align: left;">Header 参数</th> <th style="text-align: left;">类型</th> <th>是否必填</th> <th>描述</th> <th>示例值</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">Sign</td> <td style="text-align: left;">string</td> <td>是</td> <td>签名</td> <td>20d6ed7224f6ecedda74548aff9cb1a54e5c0033</td> </tr> <tr> <td style="text-align: left;">Timestamp</td> <td style="text-align: left;">string</td> <td>是</td> <td>13位时间戳(毫秒)</td> <td>1696645385740</td> </tr> <tr> <td style="text-align: left;">UserId</td> <td style="text-align: left;">string</td> <td>是</td> <td>您的用户接口appid</td> <td>2uIkTrXNdAFc7OKhbRenzjDtgPoZ6s5C</td> </tr> </tbody> </table> <p>&lt;h3 id=&quot;h3-u5E73u53F0u7B80u4ECB&quot;&gt;&lt;a name=&quot;接口示例:&quot; class=&quot;reference-link&quot;&gt;&lt;/a&gt;&lt;span class=&quot;header-link octicon octicon-link&quot;&gt;&lt;/span&gt;接口示例:&lt;/h3&gt; 以订单查询接口为例,开发者的UserId是2uIkTrXNdAFc7OKhbRenzjDtgPoZ6s5C,apikey是 H0YnuPpcVtx7rQdMTbjN6932s5oDOqFa,请求的参数如下: &gt; Header参数</p> <pre><code>Sign: 待下方计算 Timestamp: 1696645385740 UserId: 2uIkTrXNdAFc7OKhbRenzjDtgPoZ6s5C</code></pre> <p>&gt; Body参数</p> <pre><code>{ &amp;quot;day&amp;quot;: 10, &amp;quot;external_orderno&amp;quot;: &amp;quot;&amp;quot;, &amp;quot;ordersn&amp;quot;: &amp;quot;D100759082558859640832&amp;quot; }</code></pre> <p>第一步:将请求Body参数中多个键值对,参数按照参数名的字典升序排列(a-z)。</p> <pre><code>{&amp;quot;day&amp;quot;:10,&amp;quot;external_orderno&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;ordersn&amp;quot;:&amp;quot;D100759082558859640832&amp;quot;}</code></pre> <p>第二步:将 13位时间戳+第一步中排序后的字符串+apikey 拼接得到待签名字符串</p> <pre><code>1696645385740{&amp;quot;day&amp;quot;:10,&amp;quot;external_orderno&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;ordersn&amp;quot;:&amp;quot;D100759082558859640832&amp;quot;}H0YnuPpcVtx7rQdMTbjN6932s5oDOqFa</code></pre> <p>第三步:使用sha1算法加密待加密字符串即为sign</p> <pre><code>15b8f541eb10e3fbb33efd92c8d52d50ddca0784</code></pre> <p>第四步:将sign添加到Header参数中</p> <pre><code class="language-php"> Sign: 15b8f541eb10e3fbb33efd92c8d52d50ddca0784 Timestamp: 1696645385740 UserId: 2uIkTrXNdAFc7OKhbRenzjDtgPoZ6s5C</code></pre>

页面列表

ITEM_HTML