请我有一些文章数据集,我想添加列is_indexed,我需要搜索文章是否存在于Scopus "https://www.scopus.com/sources.uri“,如果有人有任何想法,我已经尝试与ScopusSearch is_indexed测试,但不起作用。
发布于 2020-06-24 17:31:31
到底是什么不起作用?
Scopus为此提供了一个API端点:
https://dev.elsevier.com/scopus.html#!/Scopus_Search/ScopusSearch
这是一个GET-endpoint,您可以在其中提交搜索查询和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不提供精确的标题搜索,你可能想要检查其他来源,如微软学术图/谷歌学者/ SemanticScholar / ScienceDirect,因为Scopus更适合作者搜索。
也许你必须检查你的API密钥是否正确?
https://stackoverflow.com/questions/62543763
复制相似问题