14 results found
-
Add link to ToS on landing page This page should include a link to the API ToS
1 voteThe Twitch Developer Services Agreement is located on the documentation landing page (https://dev.twitch.tv/docs) since it encompasses all of the Twitch developer products and services. However, you make a good point that perhaps this should be available on additional pages especially if you do not enter the site from the landing page, perhaps in the footer, which we will consider.
-
lol !/usr/bin/env/python
import BaseHTTPServer, SimpleHTTPServer
import sslcertfile = "./localhost.pem"
keyfile = "./localhost-key.pem"class RequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
def endheaders(self):
self.sendheader("Cache-Control", "no-cache, no-store, must-revalidate")
self.sendheader("Pragma", "no-cache")
self.sendheader("Expires", "0")
SimpleHTTPServer.SimpleHTTPRequestHandler.end_headers(self)httpd = BaseHTTPServer.HTTPServer(
('', 8080),
RequestHandler
)httpd.socket = ssl.wrapsocket(
httpd.socket,
serverside=True,
keyfile=keyfile,
certfile=certfile
)httpd.serve_forever()
2 votes -
я ни чего не имею dead spast3
2 votes -
More code examples It would be nice to see JS client, Node Js, Python, Go, and Rust examples of these HTTP calls?
Reposting this because I saw another user post it but it was closed and I was unable to vote on it.
1 vote -
Human readable API Docs please Link this page explicitly in the Guide section. There is no point hiding it in another subsection.
1 vote -
OAuth token flow missing from dev.twitch.tv/docs/api This is completely out of date, there's no mention of how to get an OAuth token at all.
1 voteOAuth information is here: https://dev.twitch.tv/docs/authentication
-
Make it CLEAR That WebHooks Expire I'd like to see the expiration of webhooks called out more strongly as Twitch treats webhooks differently from every other API service that I've encountered (who don't expire webhooks).
1 vote -
not *** bamcvc
1 vote -
Clarification on Run Button Instructions There is no run button on glitch. How do I run this code?
1 vote -
Add the Option to , disable sending Email if u go live as a Streamer ! there are so many small Streamers out there they are using twitch just for a small grp of ppl or there friends they are in teamspeak with just to show them a game, without Mic on , or CAM on , and for those would be nice not to send them everytime an Email hey your buddy is online thats annoying.Also there are some Streamers they did not want that all of there Friends get an Email about GO LIVE. so in this case add that Option pls
1 vote -
niks nothing
1 vote -
C 90 C 90 c 90
1 vote -
PubSub should be able to accept anonymous listeners with proper documentation. Token is not really required for listening topics like public points reward redeems.
1 voteWe appreciate the feedback. While we want to make it easy to develop tools, we also want to make sure we are protecting users’ information and that they are aware of what information is being used. For this reason, we provide a variety of authentication scopes depending on the type of information an application would be listening for, which properly informers users during authentication.
For the latest PubSub scopes, you can always refer to the topics list here: https://dev.twitch.tv/docs/pubsub#topics
-
Add links to rate limits Add a link or multiple links to the rate limit information from within the API reference.
2 votes
- Don't see your idea?