fb_graph2 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/VERSION +1 -1
  4. data/fb_graph2.gemspec +2 -1
  5. data/lib/fb_graph2/achievement.rb +3 -1
  6. data/lib/fb_graph2/application.rb +4 -0
  7. data/lib/fb_graph2/collection.rb +1 -1
  8. data/lib/fb_graph2/edge/albums.rb +5 -0
  9. data/lib/fb_graph2/edge/blocked.rb +7 -2
  10. data/lib/fb_graph2/edge/comments.rb +1 -1
  11. data/lib/fb_graph2/edge/feed.rb +1 -1
  12. data/lib/fb_graph2/edge/notifications.rb +6 -0
  13. data/lib/fb_graph2/edge/photos.rb +1 -1
  14. data/lib/fb_graph2/edge/shared_posts.rb +1 -1
  15. data/lib/fb_graph2/edge/videos.rb +1 -1
  16. data/lib/fb_graph2/page.rb +6 -1
  17. data/lib/fb_graph2/page_category.rb +7 -0
  18. data/lib/fb_graph2/user.rb +1 -0
  19. data/spec/fb_graph2/application_spec.rb +23 -0
  20. data/spec/fb_graph2/collection_spec.rb +11 -0
  21. data/spec/fb_graph2/edge/achievements_spec.rb +18 -0
  22. data/spec/fb_graph2/edge/activities_spec.rb +18 -0
  23. data/spec/fb_graph2/edge/admins_spec.rb +40 -0
  24. data/spec/fb_graph2/edge/albums_spec.rb +30 -0
  25. data/spec/fb_graph2/edge/blocked_spec.rb +60 -0
  26. data/spec/fb_graph2/edge/books_spec.rb +18 -0
  27. data/spec/fb_graph2/edge/events_spec.rb +18 -0
  28. data/spec/fb_graph2/edge/friend_lists_spec.rb +18 -0
  29. data/spec/fb_graph2/edge/friends_spec.rb +18 -0
  30. data/spec/fb_graph2/edge/groups_spec.rb +18 -0
  31. data/spec/fb_graph2/edge/home_spec.rb +18 -0
  32. data/spec/fb_graph2/edge/interests_spec.rb +18 -0
  33. data/spec/fb_graph2/edge/invitable_friends_spec.rb +18 -0
  34. data/spec/fb_graph2/edge/likes_spec.rb +4 -4
  35. data/spec/fb_graph2/edge/links_spec.rb +18 -0
  36. data/spec/fb_graph2/edge/milestones_spec.rb +18 -0
  37. data/spec/fb_graph2/edge/movies_spec.rb +18 -0
  38. data/spec/fb_graph2/edge/music_spec.rb +18 -0
  39. data/spec/fb_graph2/edge/notifications_spec.rb +29 -0
  40. data/spec/fb_graph2/edge/permissions_spec.rb +18 -0
  41. data/spec/fb_graph2/edge/picture_spec.rb +16 -0
  42. data/spec/fb_graph2/edge/pokes_spec.rb +18 -0
  43. data/spec/fb_graph2/edge/posts_spec.rb +18 -0
  44. data/spec/fb_graph2/edge/promotable_posts_spec.rb +18 -0
  45. data/spec/fb_graph2/edge/scores_spec.rb +18 -0
  46. data/spec/fb_graph2/edge/shared_posts_spec.rb +18 -0
  47. data/spec/fb_graph2/edge/statuses_spec.rb +18 -0
  48. data/spec/fb_graph2/edge/television_spec.rb +18 -0
  49. data/spec/fb_graph2/edge/videos_spec.rb +28 -0
  50. data/spec/fb_graph2/request_filter/authenticator_spec.rb +25 -0
  51. data/spec/fb_graph2/request_filter/debugger_spec.rb +33 -0
  52. data/spec/fb_graph2/user_spec.rb +1 -1
  53. data/spec/fb_graph2/util_spec.rb +19 -0
  54. data/spec/mock_json/application/app.json +15 -0
  55. data/spec/mock_json/page/admins.json +11 -0
  56. data/spec/mock_json/page/block_succeeded.json +3 -0
  57. data/spec/mock_json/page/blocked.json +11 -0
  58. data/spec/mock_json/page/milestones.json +19 -0
  59. data/spec/mock_json/page/promotable_posts.json +67 -0
  60. data/spec/mock_json/post/shared_posts.json +50 -0
  61. data/spec/mock_json/success_true.json +3 -0
  62. data/spec/mock_json/user/achievements.json +40 -0
  63. data/spec/mock_json/user/activities.json +36 -0
  64. data/spec/mock_json/user/albums.json +23 -0
  65. data/spec/mock_json/user/books.json +11 -0
  66. data/spec/mock_json/user/events.json +16 -0
  67. data/spec/mock_json/user/friend_lists.json +98 -0
  68. data/spec/mock_json/user/friends.json +18 -0
  69. data/spec/mock_json/user/groups.json +16 -0
  70. data/spec/mock_json/user/home.json +61 -0
  71. data/spec/mock_json/user/interests.json +41 -0
  72. data/spec/mock_json/user/invitable_friends.json +27 -0
  73. data/spec/mock_json/user/links.json +45 -0
  74. data/spec/mock_json/user/movies.json +11 -0
  75. data/spec/mock_json/user/music.json +45 -0
  76. data/spec/mock_json/user/notifications.json +111 -0
  77. data/spec/mock_json/user/permissions.json +114 -0
  78. data/spec/mock_json/user/picture.json +6 -0
  79. data/spec/mock_json/user/pokes.json +17 -0
  80. data/spec/mock_json/user/posts.json +48 -0
  81. data/spec/mock_json/user/scores.json +14 -0
  82. data/spec/mock_json/user/statuses.json +15 -0
  83. data/spec/mock_json/user/television.json +11 -0
  84. data/spec/mock_json/user/videos.json +41 -0
  85. data/spec/spec_helper/mock_graph.rb +1 -1
  86. data/spec/spec_helper.rb +7 -0
  87. metadata +84 -5
@@ -0,0 +1,16 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "name": "Test Event",
5
+ "start_time": "2014-06-13T19:00:00+0900",
6
+ "timezone": "Asia/Tokyo",
7
+ "location": "六本木",
8
+ "rsvp_status": "attending",
9
+ "id": "246996708819160"
10
+ }
11
+ ],
12
+ "paging": {
13
+ "previous": "https://graph.facebook.com/v2.0/579612276/events?limit=25&since=1402653600&__paging_token=enc_AezFmlDRX4GTGnTULSAcMS7GEDiK296BwTlhQLHgty6ocPG7F6tHzNZgysABJrSyXW0Xxv4A9f87zl1ii9B02tZ7",
14
+ "next": "https://graph.facebook.com/v2.0/579612276/events?limit=25&until=1402653600&__paging_token=enc_AexwobcxwDuR9BhmbM29GnNdQn7phvKIQGLtI-NeCFjlSP3uU6NeNGi10PTwl64OrNADgtn8PBNbJDsRwXGV1dg_"
15
+ }
16
+ }
@@ -0,0 +1,98 @@
1
+ {
2
+ "data": [{
3
+ "id": "10152338362087277",
4
+ "name": "CyberAgent America",
5
+ "list_type": "work"
6
+ }, {
7
+ "id": "10152338362072277",
8
+ "name": "Cerego Japan",
9
+ "list_type": "work"
10
+ }, {
11
+ "id": "10152142419302277",
12
+ "name": "Capy Inc.",
13
+ "list_type": "work"
14
+ }, {
15
+ "id": "10151887848997277",
16
+ "name": "Cerego Japan",
17
+ "list_type": "work"
18
+ }, {
19
+ "id": "10151870113532277",
20
+ "name": "Kyoto CtoG.org",
21
+ "list_type": "work"
22
+ }, {
23
+ "id": "10150348660692277",
24
+ "name": "同志社大学",
25
+ "list_type": "education"
26
+ }, {
27
+ "id": "10150346113542277",
28
+ "name": "Kawasaki-shi, Kanagawa, Japan Area",
29
+ "list_type": "current_city"
30
+ }, {
31
+ "id": "10150346085662277",
32
+ "name": "OpenID Foundation",
33
+ "list_type": "work"
34
+ }, {
35
+ "id": "10150346074892277",
36
+ "name": "OpenID Foundation Japan",
37
+ "list_type": "work"
38
+ }, {
39
+ "id": "10150341935447277",
40
+ "name": "株式会社ドリコム",
41
+ "list_type": "work"
42
+ }, {
43
+ "id": "10150336745462277",
44
+ "name": "Kyoto CtoG.org",
45
+ "list_type": "work"
46
+ }, {
47
+ "id": "10150336745457277",
48
+ "name": "Acquaintances",
49
+ "list_type": "acquaintances"
50
+ }, {
51
+ "id": "10150336744357277",
52
+ "name": "ドリコム",
53
+ "list_type": "work"
54
+ }, {
55
+ "id": "10150336526382277",
56
+ "name": "Doshisha University",
57
+ "list_type": "education"
58
+ }, {
59
+ "id": "10150336526227277",
60
+ "name": "Doshisha High School",
61
+ "list_type": "education"
62
+ }, {
63
+ "id": "10150336526222277",
64
+ "name": "Cerego Japan",
65
+ "list_type": "work"
66
+ }, {
67
+ "id": "10150336526217277",
68
+ "name": "Family",
69
+ "list_type": "family"
70
+ }, {
71
+ "id": "10150336526212277",
72
+ "name": "Close Friends",
73
+ "list_type": "close_friends"
74
+ }, {
75
+ "id": "10150287189437277",
76
+ "name": "Family",
77
+ "list_type": "user_created"
78
+ }, {
79
+ "id": "494503307276",
80
+ "name": "OpenStack",
81
+ "list_type": "user_created"
82
+ }, {
83
+ "id": "41968037276",
84
+ "name": "Doshisha",
85
+ "list_type": "user_created"
86
+ }, {
87
+ "id": "41967672276",
88
+ "name": "iKnow!",
89
+ "list_type": "user_created"
90
+ }, {
91
+ "id": "41967622276",
92
+ "name": "Drecom",
93
+ "list_type": "user_created"
94
+ }],
95
+ "paging": {
96
+ "next": "https://graph.facebook.com/v2.0/579612276/friendlists?limit=5000&offset=5000&__after_id=enc_AeyvnVCKex4_AhqGX7_QdptE11EjyFPx0CGxMGyRHvxS2SbnqjP7fJD8tL2VFjeodZA"
97
+ }
98
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "data": [{
3
+ "name": "Nat Sakimura",
4
+ "id": "1048138174"
5
+ }, {
6
+ "name": "Yusuke Kondo",
7
+ "id": "1229826130"
8
+ }, {
9
+ "name": "Yuya Ito",
10
+ "id": "1326792131"
11
+ }, {
12
+ "name": "Tatsuya Katsuhara",
13
+ "id": "1784765822"
14
+ }],
15
+ "paging": {
16
+ "next": "https://graph.facebook.com/v2.0/579612276/friends?limit=5000&offset=5000&__after_id=enc_AexFQ6mn3PA35psWD5WjFNzW7ovDp35_gkApd8tXqRmc5ygEBBAEs56d3YIetOc9NNk"
17
+ }
18
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "data": [{
3
+ "name": "OpenID Connect Hackathon",
4
+ "administrator": true,
5
+ "bookmark_order": 14,
6
+ "id": "562322927125681"
7
+ }, {
8
+ "name": "OAuth.jp",
9
+ "administrator": true,
10
+ "bookmark_order": 12,
11
+ "id": "343659285716553"
12
+ }],
13
+ "paging": {
14
+ "next": "https://graph.facebook.com/v2.0/579612276/groups?icon_size=16&limit=5000&offset=5000&__after_id=enc_AeynOYwetNSbegZQTbjirpNPayS9oqujy9wnu0CnNjC7YMl4zxLq-JP--CRz3FX3KWg"
15
+ }
16
+ }
@@ -0,0 +1,61 @@
1
+ {
2
+ "data": [{
3
+ "id": "114870808553071_759907394049406",
4
+ "from": {
5
+ "category": "Computers/internet website",
6
+ "name": "TechCrunch Japan",
7
+ "id": "114870808553071"
8
+ },
9
+ "story": "TechCrunch Japan shared a link.",
10
+ "story_tags": {
11
+ "0": [{
12
+ "id": "114870808553071",
13
+ "name": "TechCrunch Japan",
14
+ "offset": 0,
15
+ "length": 16,
16
+ "type": "page"
17
+ }]
18
+ },
19
+ "picture": "https://fbexternal-a.akamaihd.net/safe_image.php?d=AQCP3uH6kEoLnPsL&w=154&h=154&url=http%3A%2F%2Ftechcrunchjp.files.wordpress.com%2F2014%2F06%2F140603modiva1.jpg%3Fw%3D1024%26h%3D768",
20
+ "link": "http://dlvr.it/5sP8LX",
21
+ "name": "MOVIDA JAPANがデモデイを開催して13社が登壇‒‒個人的にはEigooo!に期待",
22
+ "caption": "jp.techcrunch.com",
23
+ "description": "MOVIDA JAPANは6月3日、同社のシードアクセラレーションプログラムの成果を発表する「MOVIDA JAPAN DemoDay 5th」を開催した。今回登壇したスタートアップは13社。まずは登壇したスタートアップとそのサービス概要を紹介していく。…",
24
+ "icon": "https://fbstatic-a.akamaihd.net/rsrc.php/v2/y5/r/sXJx2UP7quc.png",
25
+ "actions": [{
26
+ "name": "Comment",
27
+ "link": "https://www.facebook.com/114870808553071/posts/759907394049406"
28
+ }, {
29
+ "name": "Like",
30
+ "link": "https://www.facebook.com/114870808553071/posts/759907394049406"
31
+ }],
32
+ "privacy": {
33
+ "value": ""
34
+ },
35
+ "type": "link",
36
+ "status_type": "shared_story",
37
+ "application": {
38
+ "name": "dlvr.it",
39
+ "namespace": "dlvr_it",
40
+ "id": "232775914688"
41
+ },
42
+ "created_time": "2014-06-03T08:20:01+0000",
43
+ "updated_time": "2014-06-03T08:20:01+0000",
44
+ "likes": {
45
+ "data": [{
46
+ "id": "10203763563950799",
47
+ "name": "Takuya Kawai"
48
+ }],
49
+ "paging": {
50
+ "cursors": {
51
+ "after": "MTAyMDM3NjM1NjM5NTA3OTk=",
52
+ "before": "MTAyMDM3NjM1NjM5NTA3OTk="
53
+ }
54
+ }
55
+ }
56
+ }],
57
+ "paging": {
58
+ "previous": "https://graph.facebook.com/v2.0/579612276/home?limit=25&since=1401784697",
59
+ "next": "https://graph.facebook.com/v2.0/579612276/home?limit=25&until=1401773525"
60
+ }
61
+ }
@@ -0,0 +1,41 @@
1
+ {
2
+ "data": [{
3
+ "category": "Interest",
4
+ "name": "#idcon 14th ~ BYOResume or DEAD! ~",
5
+ "created_time": "2012-09-03T17:18:16+0000",
6
+ "id": "309562105809363"
7
+ }, {
8
+ "category": "Interest",
9
+ "name": "Heroku Meetup #6 Japan Heroku Lab",
10
+ "created_time": "2012-09-03T03:07:14+0000",
11
+ "id": "102424793243222"
12
+ }, {
13
+ "category": "Interest",
14
+ "name": "Activity Streams",
15
+ "created_time": "2011-06-30T22:57:47+0000",
16
+ "id": "114998808528822"
17
+ }, {
18
+ "category": "Company",
19
+ "name": "Social Web",
20
+ "created_time": "2011-06-18T02:52:35+0000",
21
+ "id": "105645299472577"
22
+ }, {
23
+ "category": "Interest",
24
+ "name": "Open ID",
25
+ "created_time": "2011-01-05T00:21:56+0000",
26
+ "id": "106260522746492"
27
+ }, {
28
+ "category": "Interest",
29
+ "name": "Open Social",
30
+ "created_time": "2011-01-05T00:21:52+0000",
31
+ "id": "107119605991729"
32
+ }, {
33
+ "category": "Interest",
34
+ "name": "OAuth",
35
+ "created_time": "2010-07-04T06:17:52+0000",
36
+ "id": "104064209632570"
37
+ }],
38
+ "paging": {
39
+ "next": "https://graph.facebook.com/v2.0/579612276/interests?limit=25&offset=25&__after_id=enc_AezLYldJHiKEyShbuOdR82cv0TtL4DwoXvFHvxocLB9dyJjlw96DIz3jwBNiERXgDjzAH_sT_ZhHU9QGJNxiOe3P"
40
+ }
41
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "data": [{
3
+ "id": "AVm6afobc20T0wATmCYRk_CNymo_44MQW8yMBwpgDFAQ18iF9feZpDEDmwfmcjSBSSuYkFfD5fx77g_uJRF0fmQ7AR2kObX8biP4wzN7UMpbYQ",
4
+ "name": "Shingo Yamanaka",
5
+ "picture": {
6
+ "data": {
7
+ "is_silhouette": false,
8
+ "url": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xpf1/t1.0-1/c0.15.85.85/s50x50/1468668_10152037195781416_2050550170_s.jpg"
9
+ }
10
+ }
11
+ }, {
12
+ "id": "AVnJiIlmAtrWJ106ErRPlLZNy8_Hd4mfmuQBrbGm4tuFS_ENvyYdVxTwgesXE5Wp2ICtxcPHzkA4Y4BJAWwJqyUie2ZDKQeKn9mnjPCVAUr8Lg",
13
+ "name": "Hayashi Tatsuya",
14
+ "picture": {
15
+ "data": {
16
+ "is_silhouette": false,
17
+ "url": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xaf1/t1.0-1/c79.38.479.479/s50x50/388771_10150501378984825_523522119_n.jpg"
18
+ }
19
+ }
20
+ }],
21
+ "paging": {
22
+ "cursors": {
23
+ "before": "QVZra09GaExkNndsM1J5eVpuQ2dWS1hLV3FBb0dqRTh3dC1PVXJIZE8ya0JzbV9kUDZXcWZEdUtUZFNHejcxeGlWZ3JjZjZjdkIwMWdtSWtHZGpGVE8wTWZ5cUdNUm5NWWw3c2hSTEtPZ19ySmc=",
24
+ "after": "QVZrdlNsUHItNExPY1JIUVdlZ3BDZlFCTHFFMUl6YVhnVG5fRVlBLVV0QThUMFBmRnZNQkVQWVg2VkRBQWhRa3RyemVQUFhscWxBVERYZU15SExZbG50Z0RTQUtfVno5VjRjT3VUb2J5NGg1VFE="
25
+ }
26
+ }
27
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "data": [{
3
+ "id": "10152480998332277",
4
+ "from": {
5
+ "id": "579612276",
6
+ "name": "Nov Matake"
7
+ },
8
+ "picture": "https://fbexternal-a.akamaihd.net/safe_image.php?d=AQCtEdPdezKIoUxo&w=154&h=154&url=http%3A%2F%2Fi.yimg.jp%2Fi%2Fdocs%2Frelease%2Ffbicon.jpg",
9
+ "privacy": {
10
+ "description": "Your friends",
11
+ "value": "ALL_FRIENDS",
12
+ "allow": "",
13
+ "deny": "",
14
+ "networks": "",
15
+ "friends": ""
16
+ },
17
+ "link": "http://docs.yahoo.co.jp/docs/info/terms/chapter1.html#cf2nd",
18
+ "name": "ヤフー株式会社 - サービス利用規約 第1編 基本ガイドライン",
19
+ "description": "Yahoo! JAPANのサービス利用規約、第1編 基本ガイドラインは当社のサービスをご利用になるすべての方に共通して適用されます。",
20
+ "icon": "https://fbstatic-a.akamaihd.net/rsrc.php/v2/yD/r/aS8ecmYRys0.gif",
21
+ "created_time": "2014-06-02T09:34:13+0000",
22
+ "likes": {
23
+ "data": [{
24
+ "id": "689134294485152",
25
+ "name": "Shunya Iriki"
26
+ }, {
27
+ "id": "1246364330",
28
+ "name": "Kaoru Maeda"
29
+ }],
30
+ "paging": {
31
+ "cursors": {
32
+ "after": "MTI0NjM2NDMzMA==",
33
+ "before": "Njg5MTM0Mjk0NDg1MTUy"
34
+ }
35
+ }
36
+ }
37
+ }],
38
+ "paging": {
39
+ "cursors": {
40
+ "after": "MTAxNTI0NDIwNzU4MzIyNzc=",
41
+ "before": "MTAxNTI0ODA5OTgzMzIyNzc="
42
+ },
43
+ "next": "https://graph.facebook.com/v2.0/579612276/links?limit=25&after=MTAxNTI0NDIwNzU4MzIyNzc="
44
+ }
45
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "data": [{
3
+ "category": "Movie",
4
+ "name": "The Social Network",
5
+ "created_time": "2011-01-05T00:17:17+0000",
6
+ "id": "105460422821089"
7
+ }],
8
+ "paging": {
9
+ "next": "https://graph.facebook.com/v2.0/579612276/movies?limit=25&offset=25&__after_id=enc_AewDz_Z8KNKb51zhWhUMYOJjref9qTPZpk1jT2P9sAXIzWmNSJSUU56XyMbJASE2c8qPbE1-WoFS8o6eCgs6K4Ui"
10
+ }
11
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "data": [{
3
+ "category": "Music",
4
+ "name": "斉藤和義",
5
+ "created_time": "2011-07-31T05:30:44+0000",
6
+ "id": "108827045813193"
7
+ }, {
8
+ "category": "Musician/band",
9
+ "name": "L'arc~en~Ciel",
10
+ "created_time": "2011-07-31T05:28:30+0000",
11
+ "id": "12039028077"
12
+ }, {
13
+ "category": "Musician/band",
14
+ "name": "Utada Hikaru",
15
+ "created_time": "2010-05-10T06:57:25+0000",
16
+ "id": "105806242793688"
17
+ }, {
18
+ "category": "Musician/band",
19
+ "category_list": [{
20
+ "id": "180164648685982",
21
+ "name": "Bands & Musicians"
22
+ }],
23
+ "name": "Avril Lavigne",
24
+ "created_time": "2009-01-22T18:03:07+0000",
25
+ "id": "5413509299"
26
+ }, {
27
+ "category": "Musician/band",
28
+ "name": "Bank Band",
29
+ "created_time": "2009-01-22T17:47:26+0000",
30
+ "id": "28534671472"
31
+ }, {
32
+ "category": "Musician/band",
33
+ "name": "The Yellow Monkey",
34
+ "created_time": "2009-01-22T17:36:46+0000",
35
+ "id": "32548904409"
36
+ }, {
37
+ "category": "Musician/band",
38
+ "name": "Mr. Children",
39
+ "created_time": "2009-01-22T17:36:26+0000",
40
+ "id": "27868140174"
41
+ }],
42
+ "paging": {
43
+ "next": "https://graph.facebook.com/v2.0/579612276/music?limit=25&offset=25&__after_id=enc_AeyVKBfCEuM8ZXcswQ4tW_IGxEZSp9qkwAdtOM37T5EWpk1I8POJ2Kn5tSqM2lWyx0Q"
44
+ }
45
+ }
@@ -0,0 +1,111 @@
1
+ {
2
+ "data": [{
3
+ "id": "notif_579612276_360745635",
4
+ "from": {
5
+ "id": "10203663293120616",
6
+ "name": "Tatsuya Kurosaka"
7
+ },
8
+ "to": {
9
+ "id": "579612276",
10
+ "name": "Nov Matake"
11
+ },
12
+ "created_time": "2014-06-03T03:20:28+0000",
13
+ "updated_time": "2014-06-03T03:54:10+0000",
14
+ "title": "Tatsuya Kurosaka posted in クロサカさんの仕事部屋.",
15
+ "link": "http://www.facebook.com/groups/597190250369020/632381620183216/",
16
+ "application": {
17
+ "name": "Groups",
18
+ "id": "2361831622"
19
+ },
20
+ "unread": 1,
21
+ "object": {
22
+ "name": "クロサカさんの仕事部屋",
23
+ "id": "597190250369020"
24
+ }
25
+ }, {
26
+ "id": "notif_579612276_360668511",
27
+ "from": {
28
+ "id": "824378870925480",
29
+ "name": "ちゃちゃき まさゆき"
30
+ },
31
+ "to": {
32
+ "id": "579612276",
33
+ "name": "Nov Matake"
34
+ },
35
+ "created_time": "2014-06-02T14:57:39+0000",
36
+ "updated_time": "2014-06-02T14:57:39+0000",
37
+ "title": "ちゃちゃき まさゆき posted in DevLOVE Park: \"こんにちは。..\"",
38
+ "link": "http://www.facebook.com/groups/devlovepark/763062600400231/",
39
+ "application": {
40
+ "name": "Groups",
41
+ "id": "2361831622"
42
+ },
43
+ "unread": 1
44
+ }, {
45
+ "id": "notif_579612276_360654609",
46
+ "from": {
47
+ "id": "689134294485152",
48
+ "name": "Shunya Iriki"
49
+ },
50
+ "to": {
51
+ "id": "579612276",
52
+ "name": "Nov Matake"
53
+ },
54
+ "created_time": "2014-06-02T12:46:26+0000",
55
+ "updated_time": "2014-06-02T12:46:26+0000",
56
+ "title": "Shunya Iriki shared your link.",
57
+ "link": "http://www.facebook.com/shunya.iriki/posts/695439827187932",
58
+ "application": {
59
+ "name": "Links",
60
+ "id": "2309869772"
61
+ },
62
+ "unread": 1,
63
+ "object": {
64
+ "id": "689134294485152_695439827187932",
65
+ "from": {
66
+ "id": "689134294485152",
67
+ "name": "Shunya Iriki"
68
+ },
69
+ "story": "Shunya Iriki shared a link.",
70
+ "story_tags": {
71
+ "0": [{
72
+ "id": "689134294485152",
73
+ "name": "Shunya Iriki",
74
+ "offset": 0,
75
+ "length": 12,
76
+ "type": "user"
77
+ }]
78
+ },
79
+ "picture": "https://fbexternal-a.akamaihd.net/safe_image.php?d=AQCtEdPdezKIoUxo&w=154&h=154&url=http%3A%2F%2Fi.yimg.jp%2Fi%2Fdocs%2Frelease%2Ffbicon.jpg",
80
+ "link": "http://docs.yahoo.co.jp/docs/info/terms/chapter1.html#cf2nd",
81
+ "name": "ヤフー株式会社 - サービス利用規約 第1編 基本ガイドライン",
82
+ "caption": "docs.yahoo.co.jp",
83
+ "description": "Yahoo! JAPANのサービス利用規約、第1編 基本ガイドラインは当社のサービスをご利用になるすべての方に共通して適用されます。",
84
+ "icon": "https://fbstatic-a.akamaihd.net/rsrc.php/v2/yD/r/aS8ecmYRys0.gif",
85
+ "actions": [{
86
+ "name": "Comment",
87
+ "link": "https://www.facebook.com/100001657627507/posts/695439827187932"
88
+ }, {
89
+ "name": "Like",
90
+ "link": "https://www.facebook.com/100001657627507/posts/695439827187932"
91
+ }],
92
+ "privacy": {
93
+ "value": ""
94
+ },
95
+ "type": "link",
96
+ "status_type": "shared_story",
97
+ "application": {
98
+ "name": "Facebook for iPhone",
99
+ "namespace": "fbiphone",
100
+ "id": "6628568379"
101
+ },
102
+ "created_time": "2014-06-02T12:46:26+0000",
103
+ "updated_time": "2014-06-02T12:46:26+0000"
104
+ }
105
+ }],
106
+ "paging": {
107
+ "previous": "https://graph.facebook.com/v2.0/579612276/notifications?limit=5000&since=1401765628&__paging_token=enc_Aeym53-nXWoBenYHHSSltWVXrHRbkZ5EGNZqVaacQApfA_a2VF0iAvQcjVx-jwo_UTLcO4e3kI7LJdGCggqD2OBS",
108
+ "next": "https://graph.facebook.com/v2.0/579612276/notifications?limit=5000&until=1401236040&__paging_token=enc_AexWonNPHkycgkJiATXUJ_5MzIfU8dVfjvWB0MxLEXkSEAByVh8rT8gqpKb29rj5O2TpyohRzt0iyg-Tcu6U7ImO"
109
+ },
110
+ "summary": []
111
+ }
@@ -0,0 +1,114 @@
1
+ {
2
+ "data": [{
3
+ "permission": "installed",
4
+ "status": "granted"
5
+ }, {
6
+ "permission": "public_profile",
7
+ "status": "granted"
8
+ }, {
9
+ "permission": "read_stream",
10
+ "status": "granted"
11
+ }, {
12
+ "permission": "read_mailbox",
13
+ "status": "granted"
14
+ }, {
15
+ "permission": "read_page_mailboxes",
16
+ "status": "granted"
17
+ }, {
18
+ "permission": "rsvp_event",
19
+ "status": "granted"
20
+ }, {
21
+ "permission": "email",
22
+ "status": "granted"
23
+ }, {
24
+ "permission": "read_insights",
25
+ "status": "granted"
26
+ }, {
27
+ "permission": "manage_notifications",
28
+ "status": "granted"
29
+ }, {
30
+ "permission": "read_friendlists",
31
+ "status": "granted"
32
+ }, {
33
+ "permission": "manage_pages",
34
+ "status": "granted"
35
+ }, {
36
+ "permission": "publish_actions",
37
+ "status": "granted"
38
+ }, {
39
+ "permission": "user_birthday",
40
+ "status": "granted"
41
+ }, {
42
+ "permission": "user_religion_politics",
43
+ "status": "granted"
44
+ }, {
45
+ "permission": "user_relationships",
46
+ "status": "granted"
47
+ }, {
48
+ "permission": "user_relationship_details",
49
+ "status": "granted"
50
+ }, {
51
+ "permission": "user_hometown",
52
+ "status": "granted"
53
+ }, {
54
+ "permission": "user_location",
55
+ "status": "granted"
56
+ }, {
57
+ "permission": "user_likes",
58
+ "status": "granted"
59
+ }, {
60
+ "permission": "user_activities",
61
+ "status": "granted"
62
+ }, {
63
+ "permission": "user_interests",
64
+ "status": "granted"
65
+ }, {
66
+ "permission": "user_education_history",
67
+ "status": "granted"
68
+ }, {
69
+ "permission": "user_work_history",
70
+ "status": "granted"
71
+ }, {
72
+ "permission": "user_website",
73
+ "status": "granted"
74
+ }, {
75
+ "permission": "user_groups",
76
+ "status": "granted"
77
+ }, {
78
+ "permission": "user_events",
79
+ "status": "granted"
80
+ }, {
81
+ "permission": "user_photos",
82
+ "status": "granted"
83
+ }, {
84
+ "permission": "user_videos",
85
+ "status": "granted"
86
+ }, {
87
+ "permission": "user_friends",
88
+ "status": "granted"
89
+ }, {
90
+ "permission": "user_about_me",
91
+ "status": "granted"
92
+ }, {
93
+ "permission": "user_status",
94
+ "status": "granted"
95
+ }, {
96
+ "permission": "user_games_activity",
97
+ "status": "granted"
98
+ }, {
99
+ "permission": "user_tagged_places",
100
+ "status": "granted"
101
+ }, {
102
+ "permission": "user_actions.books",
103
+ "status": "granted"
104
+ }, {
105
+ "permission": "user_actions.music",
106
+ "status": "granted"
107
+ }, {
108
+ "permission": "user_actions.video",
109
+ "status": "granted"
110
+ }, {
111
+ "permission": "user_actions.news",
112
+ "status": "granted"
113
+ }]
114
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "data": {
3
+ "url": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xfp1/t1.0-1/p50x50/1621886_836472406369007_1319645706_t.jpg",
4
+ "is_silhouette": false
5
+ }
6
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "data": [{
3
+ "to": {
4
+ "id": "579612276",
5
+ "name": "Nov Matake"
6
+ },
7
+ "from": {
8
+ "id": "10203783534727236",
9
+ "name": "Taizo Matsuoka"
10
+ },
11
+ "created_time": "2014-06-03T09:01:25+0000"
12
+ }],
13
+ "paging": {
14
+ "previous": "https://graph.facebook.com/v2.0/579612276/pokes?limit=25&since=1401786085",
15
+ "next": "https://graph.facebook.com/v2.0/579612276/pokes?limit=25&until=1401786085"
16
+ }
17
+ }