Skip to content

Instantly share code, notes, and snippets.

@Scampi-ml
Scampi-ml / twitch_oauth_token_generator
Last active July 16, 2024 11:12
Get a twitch oauth token using client id & client secret
<?php
class TwitchTokenGenerator
{
public $tw_auth_url;
public $tw_client_id;
public $tw_client_secret;
public function getTwitchAccessToken()
{
$ch = curl_init();