authoriseGitHub {archivist.github} | R Documentation |
authoriseGitHub
is function that performes OAuth authorisation with GitHub API
and stores resulting token in the github_token
variable.
In order to authorise your app you need ClinetID and ClientSecret.
They can be found here: https://github.com/settings/applications/new
authoriseGitHub(ClientID, ClientSecret, scope = c("public_repo"))
ClientID |
A 20 characters long string with Client ID. See https://github.com/settings/applications/ for more details. |
ClientSecret |
A 40 characters long string with Client Secret. See https://github.com/settings/applications/ for more details. |
scope |
A character vector with the list of availables scopes for the GitHub API token. See https://developer.github.com/v3/oauth/#scopes.
For repository deletion you will need to add |
Bug reports and feature requests can be sent to https://github.com/MarcinKosinski/archivist.github/issues
Przemyslaw Biecek, przemyslaw.biecek@gmail.com
More about archivist.github can be found on marcinkosinski.github.io/archivist.github/ and about archivist in posts' history on https://pbiecek.github.io/archivist/articles/posts.html
Other archivist.github: archive
,
archivist.github-package
,
cloneGitHubRepo
,
createGitHubRepo
,
deleteGitHubRepo
,
pushGitHubRepo
## Not run:
## GitHub version
authoriseGitHub(ClientID, ClientSecret) -> github_token
## End(Not run)