我正在使用 Trello API,并且在 Stack Overflow 上对其他人有一个常见问题。我尝试使用提供的解决方案,但我得到一个奇怪的错误,无法弄清楚原因。
cardlist_url = "https://api.trello.com/1/boards/" + board + "$
r = requests.get(cardlist_url)
r = r.text
j = json.loads(r)
#Check for when due
print j['due']
但是在打印j['due']
时,我得到:
TypeError:列表索引必须是整数,而不是 str
这似乎与常识相悖。顺便说一句,我输入了一些整数,但它没有任何效果!(我确实保存了它!)