回答編集履歴
1
情報の追加
test
CHANGED
@@ -424,14 +424,24 @@
|
|
424
424
|
|
425
425
|
で取得したJSON文字列を変換するの
|
426
426
|
|
427
|
-
|
428
|
-
|
429
427
|
```Python
|
430
428
|
|
431
429
|
response = requests.get(URL + 'commentThreads', params=params)
|
432
430
|
|
431
|
+
resource = response.json()
|
432
|
+
|
433
|
+
```
|
434
|
+
|
435
|
+
でも良いそうですが(追加情報ありがとうございます。)
|
436
|
+
|
437
|
+
|
438
|
+
|
439
|
+
```Python
|
440
|
+
|
441
|
+
response = requests.get(URL + 'commentThreads', params=params)
|
442
|
+
|
433
443
|
resource = json.loads(response.text)
|
434
444
|
|
435
445
|
```
|
436
446
|
|
437
|
-
|
447
|
+
にしてresponse.text確認してみては?
|