中国科学家
中国科学院院士---中国人一定要铭记他们为国家做出的杰出贡献

接口地址: 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

  1. {
  2. "desc": "逝世日期:2005.10.02",
  3. "reference": [],
  4. "lemmaTitle": "陈庆宣",
  5. "lemmaDesc": "中国科学院院士、地质力学家",
  6. "summary": "陈庆宣(1916年4月4日—2005年10月2日),出生于湖北黄陂,地质力学家,中国科学院学部委员,国土资源部地质力学研究所研究员、博士生导师。陈庆宣于1941年从国立西南联合大学地质地理气象学系毕业,到经济部资源委员会西南矿产测勘处工作;1945年调入中央研究院地质研究所工作;1949年调到中国科学院地质研究所,担任副研究员、构造室副主任;1956年奉命组建中国科学院兰州地质研究所;1962年离开兰州,来到地质部地质力学研究所工作;1979年加入中国共产党;1984年被聘为博士生导师;1996年被聘为地质矿产部高级顾问;1991年当选为中国科学院学部委员(院士);2005年10月2日在北京逝世,享年90岁。陈庆宣主要研究构造地质、构造物理、地质力学和地壳稳定性评价。",
  7. "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",
  8. "encodeItemId": "d967b90367cdb14e4b398213",
  9. "lemmaId": 3815064
  10. }

错误码格式说明:

名称 类型 说明

代码示例:

code如初api

  1. <?php
  2. header('Content-type: application/json; charset=utf-8');
  3. date_default_timezone_set('PRC');
  4. $url = 'https://58.linkpc.net/api/ksj';
  5. $type = isset($_GET['type']) ? $_GET['type'] : '';
  6. if ($type == 'json' || $type == 'JSON') {
  7. $result = file_get_contents($url . '?type=json');
  8. echo htmlspecialchars($result);
  9. } else {
  10. $ch = curl_init($url);
  11. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  12. $response = curl_exec($ch);
  13. $contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
  14. curl_close($ch);

  15. if (strpos($contentType, 'image') !== false) {
  16. header('Content-Type: ' . $contentType);
  17. echo $response;
  18. } elseif (strpos($contentType, 'text') !== false) {
  19. header('Content-Type: ' . $contentType);
  20. echo $response;
  21. } elseif (strpos($contentType, 'application/json') !== false) {
  22. header('Content-Type: application/json');
  23. echo $response;
  24. } else {
  25. header('Content-Type: text/html');
  26. echo $response;
  27. }
  28. }
  29. ?>