More and more mail providers are adopting the OAuth2.0 authentication as for their preferred method. Although there may be some pain involved in the process of configuring and obtaining an access token, it is a more secure way of authenticating your identity during an IMAP session.
In this vignette, we will describe the process of obtaining, using, and refreshing an OAuth2.0 token to establish a connection with the Gmail IMAP server. This process will be very likely the same when trying to replicate it in other mail providers, such as AOL, Yahoo, Outlook Office 365, and many others.
IMPORTANT: Currently, the only drawback with this approach may be your libcurl’s version. The libcurl functionality responsible for transmitting the token was not working properly in old libcurl versions. If you have version 7.65.0 (released on May 22, 2019) or above installed, you should be fine. Therefore, we recommend checking to which libcurl version, the curl R package is linked by executing:
::curl_version() curl
## $version
## [1] "7.70.0"
##
## $ssl_version
## [1] "OpenSSL/1.1.1f"
##
## $libz_version
## [1] "1.2.11"
##
## $libssh_version
## [1] NA
##
## $libidn_version
## [1] NA
##
## $host
## [1] "x86_64-pc-linux-gnu"
##
## $protocols
## [1] "dict" "file" "ftp" "ftps" "gopher" "http" "https" "imap"
## [9] "imaps" "pop3" "pop3s" "rtsp" "smb" "smbs" "smtp" "smtps"
## [17] "telnet" "tftp"
##
## $ipv6
## [1] TRUE
##
## $http2
## [1] FALSE
##
## $idn
## [1] FALSE
The steps involved in configuring and obtaining an OAuth2.0 access token can be summarized as follows:
httr
package to retrieve the tokenUsing your web browser, log into the page: https://console.developers.google.com/apis/. Assuming that you don’t have any pre-existent project, you should see this page:
Then, click on “Create New Project”
On the next screen, type a name for your project. Here, we go with “xpto-allan”:
After a few seconds, the project is created.
Once the project is created, we move to the credentials part.
Click on “CREDENTIALS” in the menu on the left:
You should see the following screen:
On the top menu, click on “+ CREATE CREDENTIALS”, then on “OAuth
client ID”.
You should see the following screen. Select “Web Application”.
In the following screen, fill in the name of the OAuth2.0 client. You chose “mRpostman”, but you can choose the name of your preference.
Scroll down the page and click “CREATE”.
On the following page, you have your key and client information.
Copy the information above to an R script:
= "vsV[...]6m7"
secret
= "85169[...]9pk.apps.googleusercontent.com" key
In this same script, we use the httr
package to
configure and obtain our token.
httr
package to retrieve the
tokenNow, we need an endpoint, an app configuration, and a scope, which is
circumscribed to Gmail. The httr
package has some pre-set
endpoints for Google, Yahoo, and other APIs. So, it is very
straightforward to define one with httr
.
<- httr::oauth_endpoints("google")
endpoint
<- httr::oauth_app(
gmail_app "xpto-allan",
key = key,
secret = secret
)
<- "https://mail.google.com/"
scope
<- httr::oauth2.0_token(endpoint, app = gmail_app, scope = scope) auth_code
As it is the first time you are trying to access your account using the OAuth2.0 token, you’ll be prompted about caching your credentials on a local file.
After, you will be redirected to a webpage, where you are going to make some confirmations about your identity:
Finally, you should see a new white tab with the message: “Authentication complete. Please close this page and return to R”.
Now we can test our IMAP connection with mRpostman
,
using the xoauth2_bearer
argument in
configure_imap()
:
First, we put our access token into a different object. This is not
mandatory. You can pass the auth_code$access_token
directly
to the xoauth2_bearer
argument. Your token should be a
large string, starting with “ya29.<…>”. If it is empty, re-execute
the line
auth_code <- httr::oauth2.0_token(endpoint, app = gmail_app, scope = scope)
.
<- auth_code$credentials$access_token token
Finally, we configure an IMAP connection and test it:
library(mRpostman)
<- configure_imap(url="imaps://imap.gmail.com",
con username = "user@gmail.com",
use_ssl = TRUE,
verbose = TRUE,
xoauth2_bearer = token
)
$list_server_capabilities() con
## [1] "IMAP4rev1" "UNSELECT" "IDLE"
## [4] "NAMESPACE" "QUOTA" "ID"
## [7] "XLIST" "CHILDREN" "X-GM-EXT-1"
## [10] "UIDPLUS" "COMPRESS=DEFLATE" "ENABLE"
## [13] "MOVE" "CONDSTORE" "ESEARCH"
## [16] "UTF8=ACCEPT" "LIST-EXTENDED" "LIST-STATUS"
## [19] "LITERAL-" "SPECIAL-USE" "APPENDLIMIT=35651584"
If you got some kind of “SASL …” error in the information flow between the server and mRpostman, your libcurl version may be older than the 7.65 we mentioned in the Introduction. Therefore, it still has the Oauth2.0 bearer bug. If this is the case you should update it. Or, perhaps your libcurl version is updated, but your curl R package is pointing to an older version of libcurl in your disk. In this case, you’ll have to dig on the internet how to solve it.
For future sessions (or after a considerable span of time) you’ll need to refresh the previous token. You can use the following function below to achieve that:
# thanks to jdeboer code at https://github.com/r-lib/httr/issues/31
.0_refresh <- function(endpoint, app, auth_code, type = NULL) {
oauth2<- httr::POST(
req url = endpoint$access,
multipart = FALSE,
body = list(
client_id = app$key,
client_secret = app$secret,
grant_type = "refresh_token",
refresh_token = auth_code$credentials$refresh_token
)
)<- httr::content(req, type = type)
content_out <- c(content_out, auth_code$credentials$access_token)
content_out
}
<- oauth2.0_refresh(endpoint, app=gmail_app, auth_code=auth_code)
auth_code_new
<- auth_code_new$access_token token
Substitute it into the xoauth2_bearer
argument in
configure_imap()
and you are done.