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

接口地址: 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 科学家照片

返回示例:

{
"desc": "",
"reference": [],
"lemmaTitle": "葛昌纯",
"lemmaDesc": "中国科学院院士,北京科技大学材料科学与工程学院教授",
"summary": "葛昌纯,1934年3月6日生于上海,浙江省平湖市人。中共党员,中国科学院院士,粉末冶金和先进陶瓷专家,北京科技大学材料科学与工程学院教授。1952年毕业于北方交通大学唐山铁道学院,1983年获德国Dresden技术大学博士学位。2001年当选为中国科学院院士。葛昌纯长期从事材料科学研究工作。在气体扩散法生产浓缩铀用的分离膜研制、先进陶瓷研究、气-固系燃烧合成氮化物基陶瓷的研究和耐高温等离子体冲刷的功能梯度材料研究等方面贡献突出。",
"coverPic": "https:\/\/bkimg.cdn.bcebos.com\/smart\/64380cd7912397dda144e42050daa5b7d0a20cf429c5-bkimg-process,v_1,rw_1,rh_1,maxl_216,pad_1,color_ffffff?x-bce-process=image\/format,f_auto",
"encodeItemId": "3bad0e02b4e3794dcbee902f",
"lemmaId": 1182386
}

错误码格式说明:

名称 类型 说明

代码示例:

                            <?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;
}
}
?>