echo "twitch test";
// create curl resource
$ch = curl_init();
$clientId = "rfi1v5k87ya9kyz6f4r1wahzdipgt5";
$secret = "gojoxxvun4yq0iavv6xlxpxcl8ya21";
$uri = "https://sfare.scoregod.com/oauth/token.php";
$scope = "bits:read%20channel:read:hype_train%20channel:read:subscriptions%20chat:edit%20chat:read%20whispers:read%20whispers:edit";
$get = "https://id.twitch.tv/oauth2/authorize?client_id=$clientId&redirect_uri=$uri&scope=$scope&response_type=token";
echo "
$get";
// set url
curl_setopt($ch, CURLOPT_URL, $get);
//return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
$output = curl_exec($ch);
echo $output;
// close curl resource to free up system resources
curl_close($ch);
?>