回答編集履歴
1
情報の追加
answer
CHANGED
@@ -211,9 +211,14 @@
|
|
211
211
|
```
|
212
212
|
|
213
213
|
で取得したJSON文字列を変換するの
|
214
|
+
```Python
|
215
|
+
response = requests.get(URL + 'commentThreads', params=params)
|
216
|
+
resource = response.json()
|
217
|
+
```
|
218
|
+
でも良いそうですが(追加情報ありがとうございます。)
|
214
219
|
|
215
220
|
```Python
|
216
221
|
response = requests.get(URL + 'commentThreads', params=params)
|
217
222
|
resource = json.loads(response.text)
|
218
223
|
```
|
219
|
-
|
224
|
+
にしてresponse.text確認してみては?
|