要获取任何“类别”(标签:查询)或“名称”的所有配置文件,您可以使用 SerpApi 等第三方解决方案。这是一个免费试用的付费 API。
示例 python 代码(也可在其他库中获得):
from serpapi import GoogleSearch
params = {
"api_key": "SECRET_API_KEY",
"engine": "google_scholar_profiles",
"q": "Coffee",
"hl": "en",
"mauthors": "label:anaphylaxis"
}
search = GoogleSearch(params)
results = search.get_dict()
示例 JSON 输出:
"profiles": [
{
"name": "Jerrold H Levy",
"link": "https://scholar.google.com/citations?hl=en&user=qnH5V28AAAAJ",
"serpapi_link": "https://serpapi.com/search.json?author_id=qnH5V28AAAAJ&engine=google_scholar_author&hl=en",
"author_id": "qnH5V28AAAAJ",
"affiliations": "Professor of Anesthesiology and Surgery (Cardiothoracic)",
"email": "Verified email at duke.edu",
"cited_by": 80353,
"interests": [
{
"title": "bleeding",
"serpapi_link": "https://serpapi.com/search.json?engine=google_scholar_profiles&hl=en&mauthors=label%3Ableeding",
"link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:bleeding"
},
{
"title": "anaphylaxis",
"serpapi_link": "https://serpapi.com/search.json?engine=google_scholar_profiles&hl=en&mauthors=label%3Aanaphylaxis",
"link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:anaphylaxis"
},
{
"title": "anticoagulation",
"serpapi_link": "https://serpapi.com/search.json?engine=google_scholar_profiles&hl=en&mauthors=label%3Aanticoagulation",
"link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:anticoagulation"
},
{
"title": "shock",
"serpapi_link": "https://serpapi.com/search.json?engine=google_scholar_profiles&hl=en&mauthors=label%3Ashock",
"link": "https://scholar.google.com/citations?hl=en&view_op=search_authors&mauthors=label:shock"
}
],
"thumbnail": "https://scholar.googleusercontent.com/citations?view_op=small_photo&user=qnH5V28AAAAJ&citpid=2"
},
...
}
您可以查看文档以获取更多详细信息。
免责声明:我在 SerpApi 工作。