获取订单卡密
<h1>获取卡密接口文档</h1>
<h2>简要描述</h2>
<p>本接口用于获取卡密信息。</p>
<h2>请求URL</h2>
<pre><code>http://域名/api.php</code></pre>
<h2>请求方式</h2>
<pre><code>POST</code></pre>
<h2>签名</h2>
<p>签名方式为:</p>
<pre><code>md5(订单号 + APPID + APPKEY)</code></pre>
<h2>参数</h2>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>func</td>
<td>是</td>
<td>方法名称,固定值 get_card</td>
</tr>
<tr>
<td>order_id</td>
<td>是</td>
<td>对接站点的订单编号</td>
</tr>
<tr>
<td>user_id</td>
<td>是</td>
<td>账户ID</td>
</tr>
<tr>
<td>sign</td>
<td>是</td>
<td>签名</td>
</tr>
</tbody>
</table>
<h2>返回示例</h2>
<pre><code class="language-json">{
&quot;code&quot;: 1,
&quot;msg&quot;: &quot;success&quot;,
&quot;data&quot;: {
&quot;card&quot;: [
&quot;http: //x.5dp.top/TS2cMrV1DSF2P5&quot;
]
}
}</code></pre>
<h2>返回参数说明</h2>
<table>
<thead>
<tr>
<th>参数名</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>固定返回1</td>
</tr>
<tr>
<td>msg</td>
<td>操作提示</td>
</tr>
<tr>
<td>card</td>
<td>卡密信息,为json格式</td>
</tr>
</tbody>
</table>
<p>请确保在使用接口前,按照要求正确传递参数并进行签名。</p>