稳定、快速、免费的 API 接口服务
中国科学院院士---中国人一定要铭记他们为国家做出的杰出贡献
接口地址: https://58.linkpc.net/api/ksj
返回格式: JSON
请求方式: GET
请求示例: https://58.linkpc.net/api/ksj?type=json
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
type | 否 | string | 返回格式默认HTML可选JSON |
lemmaTitle | 否 | string | 可指定科学家名字比如lemmaTitle=钱学森 |
返回参数说明:
名称 | 类型 | 说明 |
---|---|---|
desc | string | 已故日期 |
reference | string | 参考 |
lemmaTitle | string | 科学家姓名 |
lemmaDesc | string | 简单描述 |
summary | string | 详细描述 |
coverPic | string | 科学家照片 |
返回示例:
code如初api
- {
- "desc": "逝世日期:2005.10.02",
- "reference": [],
- "lemmaTitle": "陈庆宣",
- "lemmaDesc": "中国科学院院士、地质力学家",
- "summary": "陈庆宣(1916年4月4日—2005年10月2日),出生于湖北黄陂,地质力学家,中国科学院学部委员,国土资源部地质力学研究所研究员、博士生导师。陈庆宣于1941年从国立西南联合大学地质地理气象学系毕业,到经济部资源委员会西南矿产测勘处工作;1945年调入中央研究院地质研究所工作;1949年调到中国科学院地质研究所,担任副研究员、构造室副主任;1956年奉命组建中国科学院兰州地质研究所;1962年离开兰州,来到地质部地质力学研究所工作;1979年加入中国共产党;1984年被聘为博士生导师;1996年被聘为地质矿产部高级顾问;1991年当选为中国科学院学部委员(院士);2005年10月2日在北京逝世,享年90岁。陈庆宣主要研究构造地质、构造物理、地质力学和地壳稳定性评价。",
- "coverPic": "https:\/\/bkimg.cdn.bcebos.com\/smart\/6a63f6246b600c33050328241e4c510fd8f9a1e0-bkimg-process,v_1,rw_1,rh_1,maxl_216,pad_1,color_ffffff?x-bce-process=image\/format,f_auto",
- "encodeItemId": "d967b90367cdb14e4b398213",
- "lemmaId": 3815064
- }
错误码格式说明:
名称 | 类型 | 说明 |
---|
代码示例:
code如初api
- <?php
- header('Content-type: application/json; charset=utf-8');
- date_default_timezone_set('PRC');
- $url = 'https://58.linkpc.net/api/ksj';
- $type = isset($_GET['type']) ? $_GET['type'] : '';
- if ($type == 'json' || $type == 'JSON') {
- $result = file_get_contents($url . '?type=json');
- echo htmlspecialchars($result);
- } else {
- $ch = curl_init($url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- $response = curl_exec($ch);
- $contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
- curl_close($ch);
- if (strpos($contentType, 'image') !== false) {
- header('Content-Type: ' . $contentType);
- echo $response;
- } elseif (strpos($contentType, 'text') !== false) {
- header('Content-Type: ' . $contentType);
- echo $response;
- } elseif (strpos($contentType, 'application/json') !== false) {
- header('Content-Type: application/json');
- echo $response;
- } else {
- header('Content-Type: text/html');
- echo $response;
- }
- }
- ?>