diff --git a/README.md b/README.md index e60283c..605cbfd 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,10 @@ You can get your client ID and secret from your [Extension Dashboard](https://de To get the owner ID, you will need to execute a simple CURL command against the Twitch `/users` endpoint. You'll need your extension client ID as part of the query (this will be made consistent with the Developer Rig shortly, by using _owner name_). ```bash -curl -H "Client-ID: " -X GET "https://api.twitch.tv/helix/users?login=" +curl -H "Client-ID: " -X GET "https://api.twitch.tv/helix/users?login=" \ +-H "Authorization: Bearer " ``` +To get the token, follow [Twitch API](https://dev.twitch.tv/docs/api/) guide Step 2. + **Note -** If you haven't yet created an extension, you can start that process [here](https://dev.twitch.tv/extensions).