Ask AI on The Internet
Question: Write a program that invites people's contact list to watch watch twitch.tv/jack_oat_mon when they open the link
import requests #Twitch API auth token token = "your_token_here" #Twitch API auth client ID client_id = "your_client_id_here" #Twitch channel to watch channel = "jack_oat_mon" #URL of viewers page viewers_url = f"https://api.twitch.tv/helix/users/follows?first=100&to_id={channel}&client_id={client_id}&token={token}" #Send request to get list of viewers viewers_response = requests.get(viewers_url) viewers_data = viewers_response.json() #Create list of viewer usernames viewers = [] for v in viewers_data['data']: viewers.append(v['from_name']) #Create message to invite viewers message = f"Hey {viewers}! Come join me on Twitch at twitch.tv/{channel}" #Send invitation message to viewers print(message)
Jan. 9, 2023, 1:52 p.m.
A new large language model has been made available since this question was asked.
To generate an updated answer from the new model, click the button below.
Think your answer is better than the AI's? Post it below.
Other Most Relevant Posts:
Question Tags
If you want your question answered by an AI, click here.
Post your own comment: