teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

JSONの追加

2016/09/17 11:06

投稿

programming
programming

スコア476

title CHANGED
File without changes
body CHANGED
@@ -14,4 +14,35 @@
14
14
  実行結果
15
15
  ```
16
16
  {"kind"=>"books#volumes", "totalItems"=>0}
17
+ ```
18
+
19
+ 以下が[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です。(一部です。)
20
+ ```JSON
21
+ {
22
+ "kind": "books#volumes",
23
+ "totalItems": 450,
24
+ "items": [
25
+ {
26
+ "kind": "books#volume",
27
+ "id": "EArwrQEACAAJ",
28
+ "etag": "30KRh9md+iY",
29
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/EArwrQEACAAJ",
30
+ "volumeInfo": {
31
+ "title": "神様のカルテ0",
32
+ "subtitle": "",
33
+ "authors": [
34
+ "夏川草介"
35
+ ],
36
+
37
+
38
+
39
+ (省略)
40
+
41
+
42
+ "searchInfo": {
43
+ "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 ..."
44
+ }
45
+ }
46
+ ]
47
+ }
17
48
  ```