From f9ac92d6b2929044e62d0be8e25b37ca69a21a82 Mon Sep 17 00:00:00 2001 From: Creeperman007 Date: Sun, 7 Jun 2020 17:45:12 +0200 Subject: [PATCH] Removed channel ID Channel ID is no longer needed to identify user as it is automatically retrieved using token --- README.md | 1 - main.php | 1 - 2 files changed, 2 deletions(-) diff --git a/README.md b/README.md index 679f351..242a20e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ Chat commands for StreamElements' Contests * Create file called `credentials.php` * The file will contain three variables * `$key` - random string, that is used in URL - * `$channel` SE Account ID that you can find [here](https://streamelements.com/dashboard/account/channels) * `$bearer` SE JWT Token that you can find [here](https://streamelements.com/dashboard/account/channels) (After clicking "Show secrets") diff --git a/main.php b/main.php index 0556194..67c2127 100644 --- a/main.php +++ b/main.php @@ -2,7 +2,6 @@ /* Credentials structure: $key = "random string"; -$channel = "SE channelID"; $bearer = "SE JWT token"; */ require_once("credentials.php");