質問編集履歴

1

JSONの追加

2016/09/17 11:06

投稿

programming
programming

スコア476

test CHANGED
File without changes
test CHANGED
@@ -31,3 +31,65 @@
31
31
  {"kind"=>"books#volumes", "totalItems"=>0}
32
32
 
33
33
  ```
34
+
35
+
36
+
37
+ 以下が[https://www.googleapis.com/books/v1/volumes?q=%E7%A5%9E%E6%A7%98%E3%81%AE%E3%82%AB%E3%83%AB%E3%83%86&country=JP](https://www.googleapis.com/books/v1/volumes?q=%E7%A5%9E%E6%A7%98%E3%81%AE%E3%82%AB%E3%83%AB%E3%83%86&country=JP)から取得したJSONです。(一部です。)
38
+
39
+ ```JSON
40
+
41
+ {
42
+
43
+ "kind": "books#volumes",
44
+
45
+ "totalItems": 450,
46
+
47
+ "items": [
48
+
49
+ {
50
+
51
+ "kind": "books#volume",
52
+
53
+ "id": "EArwrQEACAAJ",
54
+
55
+ "etag": "30KRh9md+iY",
56
+
57
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/EArwrQEACAAJ",
58
+
59
+ "volumeInfo": {
60
+
61
+ "title": "神様のカルテ0",
62
+
63
+ "subtitle": "",
64
+
65
+ "authors": [
66
+
67
+ "夏川草介"
68
+
69
+ ],
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+ (省略)
78
+
79
+
80
+
81
+
82
+
83
+ "searchInfo": {
84
+
85
+ "textSnippet": "11 年『謎解きはデナのあとで』本屋大賞受賞、 『下町ロケト』直木賞受賞、文庫『\u003cb\u003e神様の\u003c/b\u003e\u003cbr\u003e\n\u003cb\u003eカルテ\u003c/b\u003e』ミリオンセラ。 13 年『きずジポニカ』刊行。資本金 1 億 4 7 00 万円社長相賀\u003cbr\u003e\n昌宏業績売上高 14 年2 月期 1 02 6 億円社員数 7 4 6 名(男4 89 名、女2 5 7 名)採用\u003cbr\u003e\n ..."
86
+
87
+ }
88
+
89
+ }
90
+
91
+ ]
92
+
93
+ }
94
+
95
+ ```