ESPN: Private Leagues
Tan Ho
2024-05-29
Source:vignettes/espn_authentication.Rmd
espn_authentication.Rmd
This vignette details how to connect to ESPN private leagues by retreiving the ESPN_S2 and SWID parameters from a live login. This cannot be done programmatically at this time.
Instructions
- Visit your main league page (i.e. https://fantasy.espn.com/football/team?leagueId=899513&seasonId=2020)
- Make sure you are logged in.
- Open Developer Tools (on Chrome/Firefox, right-click anywhere on the
page and select
Inspect Element
) - Go to Storage (for Firefox) or Application (for Chrome) and browse
the
Cookies
available forfantasy.espn.com
- The values for SWID and ESPN_S2 are the parameters that are used by ffscrapr to connect to your private league. You can right-click and copy the values from here.
The most convenient way to handle these in any project is to store
them as environment variables. You can run
usethis::edit_r_environ()
to add these to your user
environment, by adding lines that look like:
TAN_ESPN_S2="AECt%2F12312Dwd5ktQSzfuG"
TAN_SWID="{1E6CC139-}"
The above values are both truncated (for security purposes) but ESPN_S2 is often over 250 characters long and SWID is about 38 characters long including the curly brackets.
After adding the above lines to your .Renviron and restarting R, you can access them in an espn_connect call by using Sys.getenv as per below:
conn <- espn_connect(
season = 2019,
league_id = 899513,
espn_s2 = Sys.getenv("TAN_ESPN_S2"),
swid = Sys.getenv("TAN_SWID")
)