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

2024-10-02 10:31:39 发布

您现在位置:Python中文网/ 问答频道 /正文

请给我一些文章的数据集,我想添加列索引,我需要搜索Scopus上是否存在该文章“https://www.scopus.com/sources.uri" 如果有人对此有任何想法,我已经尝试使用ScopusSearchAPI进行测试,但不起作用


Tags: 数据httpscomwww文章uriscopussources
1条回答
网友
1楼 · 发布于 2024-10-02 10:31:39

什么不起作用

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密钥是否正确

相关问题 更多 >

    热门问题