.token: Authentication token. Defaults to GITHUB_PAT or GITHUB_TOKEN environment variables, in this order if any is set. See gh_token() if you need more flexibility, e.g. different tokens for different GitHub Enterprise deployments.
.api_url: Github API url (default: https://api.github.com). Used if endpoint just contains a path. Defaults to GITHUB_API_URL
environment variable if set.
.send_headers: Named character vector of header field values (except Authorization, which is handled via .token). This can be used to override or augment the default User-Agent header: "https://github.com/r-lib/gh".
Returns
A gh_response object, which is also a list.
Details
Get a personal access token for the GitHub API from https://github.com/settings/tokens and select the scopes necessary for your planned tasks. The repo scope, for example, is one many are likely to need.
On macOS and Windows it is best to store the token in the git credential store, where most GitHub clients, including gh, can access it. You can use the gitcreds package to add your token to the credential store:
for more about managing GitHub (and generic git) credentials.
On other systems, including Linux, the git credential store is typically not as convenient, and you might want to store your token in the GITHUB_PAT environment variable, which you can set in your .Renviron file.
Examples
gh_whoami()## explicit token + use with GitHub Enterprisegh_whoami( .token ="8c70fd8419398999c9ac5bacf3192882193cadf2", .api_url ="https://github.foobar.edu/api/v3")