twitch_auth = function(client_id = "", client_secret = "")
{
if (client_id == "" | client_secret == "")
{
stop("Please add TWITCH_CLIENT_ID and TWITCH_CLIENT_SECRET to your environment variables (see documentation for reference).")
}
o = httr::POST("https://id.twitch.tv/oauth2/token",
query = query_list(client_id=client_id,
client_secret = client_secret,
grant_type="client_credentials")) %>% content()
httr::set_config(httr::add_headers('Client-ID' = client_id, Authorization=paste0("Bearer ",o$access_token)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.