Python抽搐API属性错误问题
Python Twitch API Attribute Error problem
我收到错误:AttributeError: 'set' object has no attribute 'items' while trying to get info via twitch API.
import requests
ENDPOINT = 'https://api.twitch.tv/kraken/clips/top?channel=Twitch&period=month&trending=true&limit=1'
HEAD = {
'Accept: application/vnd.twitchtv.v5+json',
'Client-ID: HIDDEN',
}
response = requests.get(url=ENDPOINT, headers=HEAD)
print (response.text)
问题在于您在 HEAD 中定义 header 的方式,您实际上创建了 set
,而不是 dictionary
。修改你的 HEAD 如下:
HEAD = {
'Accept': 'application/vnd.twitchtv.v5+json',
'Client-ID': 'HIDDEN',
}
并不是说 key
和 value
包含在引号内。
Dictionary
:
{'key', 'value'}
您所做的是创建一个 Set
:
{'key value'}
我收到错误:AttributeError: 'set' object has no attribute 'items' while trying to get info via twitch API.
import requests
ENDPOINT = 'https://api.twitch.tv/kraken/clips/top?channel=Twitch&period=month&trending=true&limit=1'
HEAD = {
'Accept: application/vnd.twitchtv.v5+json',
'Client-ID: HIDDEN',
}
response = requests.get(url=ENDPOINT, headers=HEAD)
print (response.text)
问题在于您在 HEAD 中定义 header 的方式,您实际上创建了 set
,而不是 dictionary
。修改你的 HEAD 如下:
HEAD = {
'Accept': 'application/vnd.twitchtv.v5+json',
'Client-ID': 'HIDDEN',
}
并不是说 key
和 value
包含在引号内。
Dictionary
:
{'key', 'value'}
您所做的是创建一个 Set
:
{'key value'}