TypeError: 'Response' object is not subscriptable
GET
で取得したAPIをJSONにパースしていないと出るエラーで
下記のように記述することでエラーが消えた
response = requests.get("https://*****")
response = response.json()
Go to list of users who liked
More than 1 year has passed since last update.
TypeError: 'Response' object is not subscriptable
GET
で取得したAPIをJSONにパースしていないと出るエラーで
下記のように記述することでエラーが消えた
response = requests.get("https://*****")
response = response.json()
Register as a new user and use Qiita more conveniently
Go to list of users who liked