rscopus scopus_search() 只有 returns 第一作者。需要完整的作者列表

rscopus scopus_search() only returns first author. Need full author list

我正在进行文献计量分析,并选择使用 rscopus 来自动执行我的文档搜索。我进行了测试搜索,它成功了; scopus_search() 返回的文档与我执行的手动检查完全匹配。这是我的问题:rscopus 仅返回有关每篇文章的第一作者(及其从属关系)的信息,但我需要有关针对我的特定研究问题提取的每篇文章的所有 authors/affiliations 的信息。我已经搜索了 rscopus 文档,以及 Elsevier 的 API 使用开发者说明,但无法弄清楚这一点。关于我遗漏的任何想法?

query1 <- 'TITLE-ABS-KEY ( ( recreation ) AND ( management ) AND (challenge)'
run1 <- scopus_search(query = query1, api_key = apikey, count = 20,
        view = c('STANDARD', 'COMPLETE'), start = 0, verbose = TRUE,
        max_count = 20000, http = 'https://api.elsevier.com/content/search/scopus',
        headers = NULL, wait_time = 0)

我想 post 更新,因为我弄清楚出了什么问题。我正在使用大学 VPN 访问 Scopus API,但与该 VPN 关联的 IP 地址不在我所在机构的 Scopus 许可证中包含的地址范围内。因此,我无权获得“完整”结果。我联系了 Elsevier,很快就得到了一个可以添加到搜索中的机构密钥。我的工作搜索如下所示...

query1 <- 'TITLE-ABS-KEY ( ( recreation ) AND ( management ) AND (challenge)'
run1 <- scopus_search(query = query1, api_key = apikey, count = 20,
        view = c('COMPLETE'), start = 0, verbose = TRUE,
        max_count = 20000, http='https://api.elsevier.com/content/search/scopus',
        headers = inst_token_header(insttoken), wait_time = 0)