首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何检查Scopus中是否存在文章

如何检查Scopus中是否存在文章
EN

Stack Overflow用户
提问于 2020-06-24 05:06:43
回答 1查看 143关注 0票数 0

请我有一些文章数据集,我想添加列is_indexed,我需要搜索文章是否存在于Scopus "https://www.scopus.com/sources.uri“,如果有人有任何想法,我已经尝试与ScopusSearch is_indexed测试,但不起作用。

EN

回答 1

Stack Overflow用户

发布于 2020-06-24 17:31:31

到底是什么不起作用?

Scopus为此提供了一个API端点:

https://dev.elsevier.com/scopus.html#!/Scopus_Search/ScopusSearch

这是一个GET-endpoint,您可以在其中提交搜索查询和API密钥。我用一篇研究论文的标题和我的API密钥测试了调用这个端点,它返回了很好的结果,其中每个条目的形式如下:

代码语言:javascript
复制
 {
        "@_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密钥是否正确?

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/62543763

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档