Authenticating with your Github Credentials in R
Problem
In order to interact with GitHub via Rstudio, you need to authenticate yourself. That is, you need to prove you are the owner of your GitHub account. When you log in to GitHub from your browser, you provide your username and password to prove your identity. But when you want to push and pull from your computer, you will need to use a personal access token (PAT).
This is how R may try to tell you that it wants to see your PAT:
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
fatal: unable to access “uni-mannheim-qm-2021/week01…” : The requested URL returned error: 403
How to Fix It?
Step 1: Get a PAT
Run these lines in the console (left bottom pane):
install.packages(c("usethis", "credentials"))
usethis::create_github_token()
This will open a new page on Github in your browser, where you’ll need to select the validity period of your PAT, Expiration. You may want to set it for a longer period of time then 30 days, the default, if you want to deal with this issue less frequently.
Click on Generate Token at the bottom of the page.
Next page will give you the PAT. It will be a long string and will look something like this: ghp_Kt33T3rXI1m4a9vxpBU0ngRU0
. Don’t close this page yet! You’ll need this token, so copy it.
Step 2: Save (a.k.a. cache) it in R
Now that you have the PAT, you need to tell it to R. Up until now, it’s only there on Github and R does not know your PAT. Here’s how you tell the PAT to R:
install.packages("credentials")
library(credentials)
set_github_pat()
Respond to the prompt with your personal access token (PAT).
If successful, your initial (and subsequent) calls will look like this:
set_github_pat()
# If prompted for GitHub credentials, enter your PAT in the password field
# Using GITHUB_PAT from Viktoriia Semenova (credential helper: manager-core)
That’s it. You should be able to get your Github repo onto your local Rstudio now!
PAT update in RStudio
At some point, your PAT will expire and you will need to update it. It’s very easy to do.
Step 1: Get a PAT
Follow the same steps as above to generate a new PAT.
Step 2: Save (a.k.a. cache) it in R
Add the force_new = TRUE
argument to rewrite the stored, expired, PAT.
credentials::set_github_pat(force_new = TRUE)
You’re done.