scholar_search: Search Google Scholar Highly Related Papers or Author

View source: R/scholar_search.R

scholar_searchR Documentation

Search Google Scholar Highly Related Papers or Author

Description

Search Google Scholar Highly Related Papers or Author

Usage

scholar_search(
  keyword,
  is_author = TRUE,
  server_url = "https://api.scaleserp.com",
  server_key = NULL
)

Arguments

keyword

A keyword, can be author name, e.g. "Shixiang Wang".

is_author

Default is TRUE, find author information, if FALSE, return the first page result in search engine.

server_url

Server URL, here I use Scale SERP API.

server_key

Key for searching data (multiple is acceptable), you can obtain it from URL above. If not set, use personal key from Shixiang. Total 125x2 free searches per month.

Value

A data.frame or a list.

Examples


x <- scholar_search("Shixiang Wang")
x
x <- scholar_search("Shixiang Wang", is_author = FALSE)
if (!is.null(x)) {
  x$gt
}


tinyscholar documentation built on Aug. 9, 2022, 5:06 p.m.