130 results found
-
Wording on refreshing a token is confusing
https://dev.twitch.tv/docs/authentication#refreshing-access-tokens
"
How to Refresh
To refresh a token, you need an access token/refresh token pair coming from a body. For example:
"You need only the "refresh token" and "client secret"
You can lose the access token, and still get a new token if you have a refresh_token
2 votes -
Helper: viewer is misleading as the viewer object is populated on all views not just the channel page
https://dev.twitch.tv/docs/extensions/reference#helper-viewer
The Twitch.ext.viewer object is a collection of info about the twitch viewer that is watching the channel page where your extension is activated. It will only be populated if the viewer is logged in, and only after the `onAuthorized` callback has been called. Accessing its properties will otherwise return `null`.
Should be
The Twitch.ext.viewer object is a collection of info about the twitch user that is watching the extension view.
Or something, as the
viewer
helper object exists on all views!2 votes -
Get Broadcaster Subscriptions docs example incomplete
The Get Broadcast Subscriptions docs https://dev.twitch.tv/docs/api/reference#get-broadcaster-subscriptions was updated to include gifterid and giftername fields, but neither of these were added to the example.
Also, the example is erroneous because it shows the same user id for both broadcaster and subscriber, but they represent different usernames, which is impossible.
2 votes -
Document error responses
https://dev.twitch.tv/docs/authentication/getting-tokens-oauth#oauth-client-credentials-flow
There's no information about error response and it doesn't seem to be fully compatible with RFC 6749 which means I can't find info about possible errors easily.
2 votes -
Helper: Actions - don't work in the rig
From: https://github.com/twitchdev/issues/issues/56
Brief description
Documentation describes that there are functions such as
followChannel
andrequestIdShare
but the documentation doesn't mention that these functions don't work in the rig (at time of writing)https://dev.twitch.tv/docs/extensions/reference#helper-actions
Additional context or questions
https://discordapp.com/channels/504015559252377601/523676096277905419/676767529666084864
2 votes -
onPositionChanged still in docs
From: https://github.com/twitchdev/issues/issues/36
Brief description
https://dev.twitch.tv/docs/extensions/reference#helper-extensions
The JS helper/callback function
onPositionChanged
is still documented but is no longer relevant post video component redesignExpected documentation
Section Should be removed
2 votes -
How to link out on a mobile extension
Twitch documentation does not state how to handle opening a new window on a mobile extension.
2 votes -
Unclear extensions documentation
A few of the elements on the extensions documentation (https://dev.twitch.tv/docs/extensions/reference/) are very confusing, especially in the Bits section. For example:
in getProducts, it looks like
amount
andtype
are fields directly in the product object, when they are in fact part of thecost
object within it (the Cost type is not defined anywhere else)in window.Twitch.ext.bits.onTransactionComplete, the
product
field of theTransactionObject
is said to be a string, but its description says "If set to true, will contain “inDevelopment”. Otherwise it return blank". How can it be set to true if it is a string? Also, from…
1 vote -
Tags - Inconsistency between exemple, list and prototype
Some part are missing some informations or contain error :
- Private message : send a tags "returning-chatter" that is not explain and not in the prototype of the command.
- Usernotice : you provide an exemple with the tag "msg-param-recipient-name", this tag is not in the list of tags1 vote -
No info about "expires_in" field in response of refresh request
Hello, thanks for this great page! But there is no info about "expiresin" field when using refresh token. Refresh request returns "expiresin" field too. Am I doing something wrong?
1 vote -
Where is the name listed?
"Set Name to your application's name. The name must be unique among all Twitch apps. Your app's name is listed on the Connections page under Other Connections if your app requires user consent to access or modify the user's resources." I do not understand where the name is listed, when I am on the page on which the link sends me there is not that.
1 vote -
"Make your first call" Example not working in the documentation
In the get started page (https://dev.twitch.tv/docs/api/get-started) using the code provided in the "Make your first call" paragraph is not working (and also the first request to get the access token), the returned error is:
"URL using bad/illegal format or missing URL"
The error is caused by the use of the single quotation mark (') instead of the double (").
I don't know if this is a Windows limitation or something wrong with my curl version (latest from the curl project https://curl.se/windows/) but I think that this should be corrected or at least mentioned, because I wasted half…
1 vote -
Typo
There's a typo on the "Running the bot" section of this page: https://dev.twitch.tv/docs/irc/get-started
The last word of the "The bot is running locally..."
It's supposed to be dice, i guess.
I don't want to roll the die lmao1 vote -
Scope delimiter needs to be explicit ':' instead of code
&scope=chat%3Aread+chat&3Aedit is not correct. It needs to be: &scope=chat:read+chat:edit
1 vote -
Rate limits with different status between channels
This is related to the "Rate limits" section :
What if a bot joins 2 channels, but only has mod status in 1 of them ?
Will the messages limit be 20 for both channels ?
Or will it be 20 for the channel where the bot doesn't have mod status and 100 for the channel where the bot has mod status ?
1 vote -
API Reference Typo
Under the Return Values of the Get Predictions Request of the Twitch API Reference, the description of the return value 'outcome.users' has a typo. It should read 'Number of unique users that chose the outcome.' However it says 'Number of unique uesrs that chose the outcome.'
1 vote -
PubSub docs mention "relatime viewer count", but no such topic is present
The Introduction section mentions "pushing real-time viewer count updates to video players", but the Topic section mentions of no such way. This is just tiny bit confusing.
1 vote -
Typo
Typo on second bullet point of Specify Configuration Settings: access has one too many 's'
1 vote -
Typo on Pubsub doc page
Under the title: Example: Channel Points Event Message
In the description for the "status" property of a redemption message:
reward redemption status, will be
FULFULLED if a user skips the reward queue, UNFULFILLED otherwiseFULFULLED should be FULFILLED.
1 vote -
Please add more examples for Ratelimit headers
Please provide one example for the Ratelimit headers. Tried a couple of hours without success. Thanks.
1 vote
- Don't see your idea?