<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                ??一站式輕松地調用各大LLM模型接口,支持GPT4、智譜、豆包、星火、月之暗面及文生圖、文生視頻 廣告
                __商標詳情查詢__ 查看商標的具體內容 __請求地址__ >POST https://chaolong.com/tmapi/search/tm_info?appid={APPID}&token={TOKEN} __請求參數說明__ | 參數 | 類型 | 必填 | 說明 | | :---: | :---: | :---: | :---: | | appid | string | 是 | 申請時給到您的 | | token | string | 是 | md5加密`APPID`+`時間戳`+`APPSECRET` | | data | json | 是 | AES加密后的數據 | __POST data數據說明__ | 參數 | 類型 | 說明 | | :---: | :---: | :---: | | timestamp | number | 時間戳 | | id | string | 加密后的申請號 | | cls | string | 商標大類 | >以下是基本操作方法,各位可以根據自己的習慣優化下面的代碼 __POST數據示例__ ``` PHP示例 <?php require_once 'common.php'; use Aes\Aes; $config = [ 'appid' => '', //提供給你的Appid 'appsecret' => '' //提供給你的Appsecret ]; $aes = new Aes(); $timestamp = time(); $token = md5($config['appid'] . $timestamp . $config['appsecret']); $url = 'https://chaolong.com/tmapi/search/tm_info?appid=' . $config['appid'] . '&token=' . $token; $data = $aes->encode(json_encode([ 'timestamp' => $timestamp, 'id' => urlencode(base64_encode($aes->encode(25089131,$config['appid'], $config['appsecret']))), 'cls' => '45' //必須要帶上大類,如01類,輸入01 ,因為同1個申請號有可能會有多個類的情況 ]), $config['appid'], $config['appsecret']); $rs = curl($url, 1, ['data' => $data]); //返回的是json格式 echo $rs; ?> ``` __返回數據說明__ | 參數 | 類型 | 說明 | | :---: | :---: | :---: | | status | string | 狀態 | | message | string | 狀態描述 | | data | json | 返回的數據 | __返回data參數說明__ | 參數 | 類型 | 說明 | | :---: | :---: | :---: | | trademark | array | 商標基本信息 | | contact | array | 商標詳情 | | agent | array | 代理人信息 | | goods | array | 商標選類 | __返回trademark參數說明__ | 參數 | 類型 | 說明 | | :---: | :---: | :---: | | id | number | ID | | reg_no | number | 商標注冊號 | | cls | number | 商標大類 | | reg_date | string | 申請日期 | | name | string | 商標名稱 | | name_py | string | 商標名稱轉化的拼音 | | agent_id | string | 代理人ID | | first_no | number | 初審公告號 | | first_date | string | 初審公告日期 | | last_no | number | 注冊公告號 | | last_date | string | 注冊公告日期 | | use_start | string | 有效期開始 | | use_end | string | 有效期結束 | | c_name | string | 申請人名稱 | | status | string | 申請狀態 | __返回contact參數說明__ | 參數 | 類型 | 說明 | | :---: | :---: | :---: | | id | number | ID | | reg_no | number | 商標注冊號 | | cls | number | 商標大類 | | name | string | 申請人中文名稱 | | name_en | string | 申請人英文名稱 | | address | string | 申請人中文地址 | | address_en | string | 申請人英文地址 | __返回agent參數說明__ | 參數 | 類型 | 說明 | | :---: | :---: | :---: | | id | number | ID | | agent_id | string | 代理人ID | | agent_name | string | 代理人名稱 | __返回goods參數說明__ | 參數 | 類型 | 說明 | | :---: | :---: | :---: | | id | number | ID | | reg_no | number | 商標申請號 | | cls | number | 商標分類 | | idx | number | 序號 | | good_name | string | 分類名稱 | __返回數據示例__ ``` { "message": "查詢成功", "status": "success", "data": { "trademark": { "id": "22963054", "reg_no": "25089131", "cls": "45", "reg_date": "2017-06-30", "name": "超龍", "name_py": "chaolong", "agent_id": "00060102", "first_no": "1596", "first_date": "2018-04-20", "last_no": "1608", "last_date": "2018-07-21", "use_start": "2018-07-21", "use_end": "2028-07-20" }, "contact": { "id": "23179724", "cls": "45", "reg_no": "25089131", "name": "深圳最高電子商務有限公司", "name_en": "", "address": "廣東省深圳市羅湖區國威路國威公司工業廠房126棟2105室(入駐深圳網邦商務秘書有限公司)", "address_en": "" }, "agent": { "id": "543630", "agent_id": "00060102", "agent_name": "深圳域名科技有限公司", "version_date": "2020-01-08" }, "goods": [ { "id": "187370670", "reg_no": "25089131", "cls": "45", "idx": "1", "good_name": "調解" }, ... }, "version": "2020-01-08" } ```
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看