请我有一些文章的数据集,我想添加列 is_indexed,如果有人知道我已经在 Scopus "https://www.scopus.com/sources.uri" 上存在该文章,我需要搜索该列尝试使用 ScopusSearch API 进行测试,但不起作用。
问问题
170 次
1 回答
0
什么不完全有效?
Scopus 为此提供了一个 API 端点:
https://dev.elsevier.com/scopus.html#!/Scopus_Search/ScopusSearch
这是一个 GET 端点,您可以在其中提交搜索查询和 API 密钥。我已经测试使用研究论文的标题和我的 API 密钥调用此端点,它返回了很好的结果,其中每个条目的形式为:
{
"@_fa": "true",
"link": [
{
"@_fa": "true",
"@ref": "self",
"@href": "https://api.elsevier.com/content/abstract/scopus_id/85061154479"
},
{
"@_fa": "true",
"@ref": "author-affiliation",
"@href": "https://api.elsevier.com/content/abstract/scopus_id/85061154479?field=author,affiliation"
},
{
"@_fa": "true",
"@ref": "scopus",
"@href": "https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061154479&origin=inward"
},
{
"@_fa": "true",
"@ref": "scopus-citedby",
"@href": "https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061154479&origin=inward"
},
{
"@_fa": "true",
"@ref": "full-text",
"@href": "https://api.elsevier.com/content/article/eid/1-s2.0-S0268401218307199"
}
],
"prism:url": "https://api.elsevier.com/content/abstract/scopus_id/85061154479",
"dc:identifier": "SCOPUS_ID:85061154479",
"eid": "2-s2.0-85061154479",
"dc:title": "Understanding the formation mechanism of high-quality knowledge in social question and answer communities: A knowledge co-creation perspective",
"dc:creator": "Zhang Y.",
"prism:publicationName": "International Journal of Information Management",
"prism:issn": "02684012",
"prism:volume": "48",
"prism:pageRange": "72-84",
"prism:coverDate": "2019-10-01",
"prism:coverDisplayDate": "October 2019",
"prism:doi": "10.1016/j.ijinfomgt.2019.01.022",
"pii": "S0268401218307199",
"citedby-count": "8",
"affiliation": [
{
"@_fa": "true",
"affilname": "Beihang University",
"affiliation-city": "Beijing",
"affiliation-country": "China"
}
],
"prism:aggregationType": "Journal",
"subtype": "ar",
"subtypeDescription": "Article",
"source-id": "15631",
"openaccess": "0",
"openaccessFlag": false
}
当然,如果您想要精确的论文匹配,您需要过滤掉生成的 JSON,因为我认为 Scopus 不提供精确的标题搜索,您可能需要检查其他来源,如 Microsoft Academic Graph / Google Scholar / SemanticScholar / ScienceDirect 为Scopus 更适合作者搜索。
也许您必须检查您的 API 密钥是否正确?
于 2020-06-24T09:31:30.920 回答