-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTitleFetch.py
31 lines (24 loc) · 907 Bytes
/
TitleFetch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#WORK IN PROGRESS
from os import access
import requests as rq
import json
streamer = 'loltyler1'
authURL = 'https://id.twitch.tv/oauth2/token'
Client_ID = '---------------------------'
Secret = '-------------------------'
AuthParams = {'client_id' : Client_ID, 'client_secret' : Secret, 'grant_type' : 'client_credentials'}
AuthCall = rq.post(url=authURL, params=AuthParams)
access_token = AuthCall.json()['access_token']
head = {
'Client-ID' : Client_ID,
'Authorization' : "Bearer " + access_token
}
channelURL = 'https://api.twitch.tv/helix/users?login=' + streamer
channelSearch = rq.get(channelURL, headers = head)
streamerID = channelSearch.json()['data'][0]['id']
vidURL = 'https://api.twitch.tv/helix/videos?user_id=' + streamerID + '&first=10'
titles = rq.get(vidURL, headers = head).json()
words = ""
for video in titles['data']:
words += json.dumps(video['title'])
print(words)