fb_graph 0.0.8 → 0.1.0

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 (92) hide show
  1. data/VERSION +1 -1
  2. data/fb_graph.gemspec +63 -2
  3. data/lib/fb_graph/album.rb +6 -3
  4. data/lib/fb_graph/comment.rb +1 -1
  5. data/lib/fb_graph/connections/attending.rb +1 -5
  6. data/lib/fb_graph/connections/declined.rb +1 -5
  7. data/lib/fb_graph/connections/invited.rb +1 -5
  8. data/lib/fb_graph/connections/maybe.rb +1 -5
  9. data/lib/fb_graph/connections/members.rb +2 -6
  10. data/lib/fb_graph/connections/noreply.rb +1 -5
  11. data/lib/fb_graph/event.rb +19 -9
  12. data/lib/fb_graph/group.rb +1 -1
  13. data/lib/fb_graph/link.rb +1 -1
  14. data/lib/fb_graph/node.rb +26 -26
  15. data/lib/fb_graph/note.rb +2 -2
  16. data/lib/fb_graph/photo.rb +11 -8
  17. data/lib/fb_graph/post.rb +2 -2
  18. data/lib/fb_graph/status.rb +1 -1
  19. data/lib/fb_graph/tag.rb +1 -1
  20. data/lib/fb_graph/user.rb +3 -1
  21. data/lib/fb_graph/video.rb +2 -2
  22. data/lib/fb_graph.rb +11 -6
  23. data/spec/fake_json/albums/photos/matake_private.json +97 -0
  24. data/spec/fake_json/albums/photos/post_with_valid_access_token.json +1 -0
  25. data/spec/fake_json/events/attending/post_with_valid_access_token.json +1 -0
  26. data/spec/fake_json/events/attending/smartday_private.json +44 -0
  27. data/spec/fake_json/events/declined/post_with_valid_access_token.json +1 -0
  28. data/spec/fake_json/events/declined/smartday_private.json +720 -0
  29. data/spec/fake_json/events/invited/smartday_private.json +7092 -0
  30. data/spec/fake_json/events/maybe/post_with_valid_access_token.json +1 -0
  31. data/spec/fake_json/events/maybe/smartday_private.json +956 -0
  32. data/spec/fake_json/events/noreply/smartday_private.json +896 -0
  33. data/spec/fake_json/groups/members/emacs_private.json +1996 -0
  34. data/spec/fake_json/pages/notes/post_with_valid_access_token.json +1 -0
  35. data/spec/fake_json/posts/comments/post_with_invalid_access_token.json +1 -0
  36. data/spec/fake_json/posts/comments/post_with_valid_access_token.json +1 -0
  37. data/spec/fake_json/posts/comments/post_without_access_token.json +1 -0
  38. data/spec/fake_json/posts/likes/post_with_invalid_access_token.json +1 -0
  39. data/spec/fake_json/posts/likes/post_with_valid_access_token.json +1 -0
  40. data/spec/fake_json/posts/likes/post_without_access_token.json +1 -0
  41. data/spec/fake_json/users/albums/post_with_valid_access_token.json +1 -0
  42. data/spec/fake_json/users/events/post_with_valid_access_token.json +1 -0
  43. data/spec/fake_json/users/feed/post_with_invalid_access_token.json +1 -0
  44. data/spec/fake_json/users/feed/post_with_valid_access_token.json +1 -0
  45. data/spec/fake_json/users/feed/post_without_access_token.json +1 -0
  46. data/spec/fake_json/users/interests/matake_private.json +14 -0
  47. data/spec/fake_json/users/links/matake_private.json +221 -0
  48. data/spec/fake_json/users/links/post_with_valid_access_token.json +1 -0
  49. data/spec/fake_json/users/movies/matake_private.json +9 -0
  50. data/spec/fake_json/users/music/matake_private.json +34 -0
  51. data/spec/fake_json/users/notes/matake_private.json +308 -0
  52. data/spec/fake_json/users/television/matake_private.json +9 -0
  53. data/spec/fake_json/users/videos/kirk_private.json +41 -0
  54. data/spec/fb_graph/album_spec.rb +1 -1
  55. data/spec/fb_graph/collection_spec.rb +1 -1
  56. data/spec/fb_graph/comment_spec.rb +1 -1
  57. data/spec/fb_graph/connections/activities_spec.rb +2 -2
  58. data/spec/fb_graph/connections/albums_spec.rb +18 -2
  59. data/spec/fb_graph/connections/attending_spec.rb +24 -0
  60. data/spec/fb_graph/connections/comments_spec.rb +83 -0
  61. data/spec/fb_graph/connections/declined_spec.rb +24 -0
  62. data/spec/fb_graph/connections/events_spec.rb +20 -2
  63. data/spec/fb_graph/connections/feed_spec.rb +42 -2
  64. data/spec/fb_graph/connections/interests_spec.rb +14 -0
  65. data/spec/fb_graph/connections/invited_spec.rb +14 -0
  66. data/spec/fb_graph/connections/likes_spec.rb +2 -2
  67. data/spec/fb_graph/connections/links_spec.rb +32 -0
  68. data/spec/fb_graph/connections/maybe_spec.rb +24 -0
  69. data/spec/fb_graph/connections/members_spec.rb +14 -0
  70. data/spec/fb_graph/connections/movies_spec.rb +14 -0
  71. data/spec/fb_graph/connections/music_spec.rb +14 -0
  72. data/spec/fb_graph/connections/noreply_spec.rb +14 -0
  73. data/spec/fb_graph/connections/notes_spec.rb +31 -0
  74. data/spec/fb_graph/connections/photos_spec.rb +29 -0
  75. data/spec/fb_graph/connections/television_spec.rb +14 -0
  76. data/spec/fb_graph/connections/videos_spec.rb +14 -0
  77. data/spec/fb_graph/education_spec.rb +1 -1
  78. data/spec/fb_graph/event_spec.rb +1 -1
  79. data/spec/fb_graph/group_spec.rb +1 -1
  80. data/spec/fb_graph/link_spec.rb +1 -1
  81. data/spec/fb_graph/node_spec.rb +1 -1
  82. data/spec/fb_graph/note_spec.rb +1 -1
  83. data/spec/fb_graph/photo_spec.rb +1 -1
  84. data/spec/fb_graph/post_spec.rb +1 -1
  85. data/spec/fb_graph/status_spec.rb +1 -1
  86. data/spec/fb_graph/tag_spec.rb +1 -1
  87. data/spec/fb_graph/user_spec.rb +9 -0
  88. data/spec/fb_graph/venue_spec.rb +1 -1
  89. data/spec/fb_graph/video_spec.rb +1 -1
  90. data/spec/fb_graph/work_spec.rb +1 -1
  91. data/spec/helpers/fake_json_helper.rb +4 -2
  92. metadata +64 -3
@@ -0,0 +1 @@
1
+ {"id":396664845100}
@@ -0,0 +1 @@
1
+ {"error":{"type":"OAuthException","message":"Error processing access token."}}
@@ -0,0 +1 @@
1
+ {"id":"117513961602338_119401698085884_535271"}
@@ -0,0 +1 @@
1
+ {"error":{"type":"Exception","message":"(#200) The user hasn't authorized the application to perform this action"}}
@@ -0,0 +1 @@
1
+ {"error":{"type":"OAuthException","message":"Error processing access token."}}
@@ -0,0 +1 @@
1
+ {"error":{"type":"Exception","message":"(#200) The user hasn't authorized the application to perform this action"}}
@@ -0,0 +1 @@
1
+ {"id":401096332276}
@@ -0,0 +1 @@
1
+ {"id":118954024802373}
@@ -0,0 +1 @@
1
+ {"error":{"type":"OAuthException","message":"Error processing access token."}}
@@ -0,0 +1 @@
1
+ {"id":"579612276_401071652276"}
@@ -0,0 +1 @@
1
+ {"error":{"type":"Exception","message":"(#200) The user hasn't authorized the application to perform this action"}}
@@ -0,0 +1,14 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "name": "Billiards",
5
+ "category": "Sport",
6
+ "id": "114967135183020"
7
+ },
8
+ {
9
+ "name": "Darts",
10
+ "category": "Sport",
11
+ "id": "104085636293671"
12
+ }
13
+ ]
14
+ }
@@ -0,0 +1,221 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "id": "120765121284251",
5
+ "from": {
6
+ "name": "Nov Matake",
7
+ "id": "579612276"
8
+ },
9
+ "message": "A Ruby wrapper for Facebook Graph API.",
10
+ "picture": "http://github.com/images/modules/header/logov3.png",
11
+ "link": "http://github.com/nov/fb_graph",
12
+ "name": "nov's fb_graph at master - GitHub",
13
+ "description": "A Ruby wrapper for Facebook Graph API.",
14
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
15
+ },
16
+ {
17
+ "id": "115005115200017",
18
+ "from": {
19
+ "name": "Nov Matake",
20
+ "id": "579612276"
21
+ },
22
+ "message": "FbGraph logo",
23
+ "picture": "http://sphotos.ak.fbcdn.net/hphotos-ak-snc3/hs301.snc3/28655_117574271596307_117513961602338_179547_2592648_n.jpg",
24
+ "name": "Profile Pictures",
25
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
26
+ },
27
+ {
28
+ "id": "102886346422136",
29
+ "from": {
30
+ "name": "Nov Matake",
31
+ "id": "579612276"
32
+ },
33
+ "message": "A Ruby wrapper for Facebook Graph API.",
34
+ "picture": "http://github.com/images/modules/header/logov3.png",
35
+ "link": "http://github.com/nov/fb_graph",
36
+ "name": "nov's fb_graph at master - GitHub",
37
+ "description": "A Ruby wrapper for Facebook Graph API.",
38
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
39
+ },
40
+ {
41
+ "id": "117809414910161",
42
+ "from": {
43
+ "name": "Nov Matake",
44
+ "id": "579612276"
45
+ },
46
+ "message": "A Ruby wrapper for Facebook Graph API.",
47
+ "picture": "http://github.com/images/modules/header/logov3.png",
48
+ "link": "http://github.com/nov/fb_graph",
49
+ "name": "nov's fb_graph at master - GitHub",
50
+ "description": "A Ruby wrapper for Facebook Graph API.",
51
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
52
+ },
53
+ {
54
+ "id": "113990351969162",
55
+ "from": {
56
+ "name": "Nov Matake",
57
+ "id": "579612276"
58
+ },
59
+ "link": "http://itstrending.com",
60
+ "name": "ItsTrending.com - A real time feed of the most shared content on Facebook",
61
+ "description": "A real time feed of the most shared content on Facebook",
62
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
63
+ },
64
+ {
65
+ "id": "116650531695750",
66
+ "from": {
67
+ "name": "Nov Matake",
68
+ "id": "579612276"
69
+ },
70
+ "message": "\u300cFacebook\u306e\u3059\u308b\u3053\u3068\u3092\u6b62\u3081\u308b\u305f\u3081\u306b\u306f\u65b0\u3057\u3044\u30c6\u30af\u30ce\u30ed\u30b8\u30fc\u30fb\u30d1\u30e9\u30c0\u30a4\u30e0\u304c\u5fc5\u8981\u3060\u3002\u300d",
71
+ "picture": "http://www.crunchbase.com/assets/images/resized/0000/4561/4561v1-max-250x250.png",
72
+ "link": "http://jp.techcrunch.com/archives/20100425the-age-of-facebook/",
73
+ "name": "Facebook\u6642\u4ee3",
74
+ "description": "2\u5e74\u524dCharlie Rose\u30b7\u30e7\u30a6\u306b\u51fa\u6f14\u3057\u305f\u79c1\u306f\u3001\u30b9\u30bf\u30fc\u30c8\u30a2\u30c3\u30d7\u3084\u30c8\u30ec\u30f3\u30c9\u306e\u8a71\u984c\u306e\u4e00\u3064\u3068\u3057\u3066Facebook\u3092\u53d6\u308a\u4e0a\u3052\u305f\u3002\u5f53\u6642\u306f\u307e\u3060\u3001Facebook\u306b\u5c06\u6765\u3059\u3054\u3044\u30c6\u30af\u30ce\u30ed\u30b8\u30fc\u4f01\u696d\u306b\u306a\u308b\u7d20\u5730\u304c\u3042\u3063\u305f\u306e\u304b\u3069\u3046\u304b\u306f\u3063\u304d\u308a\u3057\u306a\u304b\u3063\u305f\u3002\u5f7c\u3089\u306f\u5927\u5b66\u5e02\u5834\u3092\u5e2d\u5dfb\u3057\u3066MySpace\u306e\u5922\u3068\u5e0c\u671b\u3092\u6253\u3061\u7815\u3053\u3046\u3068\u3057\u3066\u3044\u305f\u3002\u3057\u304b\u3057\u3001\u4e00\u65b9\u3067\u306fBeacon\u306e\u5927\u5931\u6557\u306b\u52d5\u63fa\u3057\u3001\u305d\u306e\u81a8\u5927\u306a\u30a2\u30af\u30bb\u30b9\u6570\u3068\u30da\u30fc\u30b8\u30d3\u30e5\u30fc\u3092\u5b89\u5b9a\u3057\u305f\u53ce\u76ca\u6e90\u3078\u3068\u5909\u3048\u308b\u65b9\u6cd5\u3092\u78ba\u7acb\u3067\u304d\u3066\u3044\u306a\u304b\u3063\u305f\u3002 Facebook\u306b\u95a2\u3059\u308b\u8b70\u8ad6\u306f\u30ea\u30f3\u30af\u5148\u306e\u30d3\u30c7\u30aa\u306e22:00\u3042\u305f\u308a\u304b\u3089\u898b\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3002\u3042\u306e\u6642\u79c1\u304c\u63d0\u8d77\u3057\u305f\u91cd\u8981\u306a\u7591\u554f\u306f\u300cFacebook\u306bGoogle\u306e\u77ac\u9593\u306f\u6765\u308b\u306e\u304b...",
75
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
76
+ },
77
+ {
78
+ "id": "373143257051",
79
+ "from": {
80
+ "name": "Nov Matake",
81
+ "id": "579612276"
82
+ },
83
+ "message": "\u3084\u3070\u3044ww",
84
+ "picture": "http://i.ytimg.com/vi/-0jCWkM15ag/2.jpg",
85
+ "link": "http://www.youtube.com/watch?v=-0jCWkM15ag",
86
+ "name": "\u3010\u7a7a\u8033MAD\u3011\u30d0\u30fc\u30ec\u30fc\u30f3\u306e\u5b9f\u6cc1\u304c\u65e5\u672c\u8a9e\u306b\u3057\u304b\u805e\u3053\u3048\u306a\u3044\u4ef6",
87
+ "description": "\u30cb\u30b3\u30cb\u30b3\u3088\u308a\u8ee2\u8f09\u3002 Windows Movie Maker\u3067\u7de8\u96c6\u3059\u308b\u3068\u304d\u306e\u90fd\u5408\u3067\u52d5\u753b\u304c\u629c\u3051\u3066\u3044\u308b\u90e8\u5206\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u3054\u4e86\u627f\u304f\u3060\u3055\u3044m(_ _)m",
88
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
89
+ },
90
+ {
91
+ "id": "249353696790",
92
+ "from": {
93
+ "name": "Nov Matake",
94
+ "id": "579612276"
95
+ },
96
+ "picture": "http://quickkanji.com/images/headers/learnmore.gif",
97
+ "link": "http://quickkanji.com/",
98
+ "name": "quickkanji.com",
99
+ "description": "Getting started is a snap!Simply click on a button at the top of the page to call up a list in this window. After narrowing down the results to find the kanji you want, click on it to bring it up in the info panel.",
100
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
101
+ },
102
+ {
103
+ "id": "220092889972",
104
+ "from": {
105
+ "name": "Nov Matake",
106
+ "id": "579612276"
107
+ },
108
+ "message": "test test",
109
+ "link": "http://login.brandsale.goo.ne.jp/invite/nmatake",
110
+ "name": "\u771f\u6b66 \u4fe1\u548c\u3055\u3093\u304c\u3001\u3042\u306a\u305f\u3092goo \u30d6\u30e9\u30f3\u30c9\u30bb\u30fc\u30eb\u3078\u3054\u62db\u5f85\u3057\u3066\u3044\u307e\u3059\uff61",
111
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
112
+ },
113
+ {
114
+ "id": "154181399508",
115
+ "from": {
116
+ "name": "Nov Matake",
117
+ "id": "579612276"
118
+ },
119
+ "picture": "http://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/The_Great_Wave_off_Kanagawa.jpg/320px-The_Great_Wave_off_Kanagawa.jpg",
120
+ "link": "http://smart.fm",
121
+ "name": "Smart.fm - The World's Sharpest Learning Tool.",
122
+ "description": "Smart.fm is the world\\'s sharpest learning tool. Personalized scheduling takes the burden off of learning.",
123
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
124
+ },
125
+ {
126
+ "id": "128613502775",
127
+ "from": {
128
+ "name": "Nov Matake",
129
+ "id": "579612276"
130
+ },
131
+ "link": "http://www.lottay.com/users/800/wishes/1162",
132
+ "name": "twitbackr (nov) is wishing for a 'More powerful server for twitbackr' on Lottay.com",
133
+ "description": "Come check out and contribute to twitbackr's wish. Here's what twitbackr has to say about it: 'To improve twitbackr's performance, Heroku, used for twitbackr hosting, require $15/month for 10 times larger strage $15/month for background task support $36/month for 1 more server'",
134
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
135
+ },
136
+ {
137
+ "id": "95586691046",
138
+ "from": {
139
+ "name": "Nov Matake",
140
+ "id": "579612276"
141
+ },
142
+ "message": "twittbacker \u307f\u305f\u3044\u306a\u306e\u3067\u3053\u3093\u306a\u98a8\u306b facebook \u306b\u30dd\u30b9\u30c8\u3057\u305f\u3044\u3002",
143
+ "picture": "http://blog.matake.jp/images/jruby.png",
144
+ "link": "http://blog.matake.jp/archives/java_rails_macosx_leopard",
145
+ "name": "Java \u304b\u3089 Rails \u30a2\u30d7\u30ea\u306e\u30e2\u30c7\u30eb\u3092\u547c\u3073\u51fa\u3059 (MacOSX Leopard) - \u4eac\u306e\u8def",
146
+ "description": " Shindig Java \u7248\u304b\u3089 Rails \u30a2\u30d7\u30ea\u306e\u30e2\u30c7\u30eb\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u70ba\u306b\u3001Java \u304b\u3089 Ruby \u3092\u547c\u3073\u51fa\u3059\u3068\u3044\u3046\u6280\u306b\u30c1\u30e3\u30ec\u30f3\u30b8\u3057\u3066\u307f\u307e\u3057\u305f\u3002 \u306a\u3093\u3060\u304b org.jruby.* \u3092...",
147
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
148
+ },
149
+ {
150
+ "id": "52379193642",
151
+ "from": {
152
+ "name": "Nov Matake",
153
+ "id": "579612276"
154
+ },
155
+ "picture": "http://wiki.developers.facebook.com/images/7/75/CommentsBox.png",
156
+ "link": "http://blog.matake.jp/archives/facebook_connect_comment_widget",
157
+ "name": "Facebook \u304c\u30ea\u30ea\u30fc\u30b9\u3057\u305f Facebook Connect \u5bfe\u5fdc Comment Widget \u3092\u5c0e\u5165 - \u4eac\u306e\u8def",
158
+ "description": "Commenting with Facebook Connect \u3088\u308a Facebook Connect \u3092\u5229\u7528\u3057\u305f\u30b3\u30e1\u30f3\u30c8\u30d5\u30a9\u30fc\u30e0\u3092\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u7121\u3057\u3067\u7c21\u5358\u306b\u5c0e\u5165\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u306e\u3067\u3001\u65e9...",
159
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
160
+ },
161
+ {
162
+ "id": "48834012508",
163
+ "from": {
164
+ "name": "Nov Matake",
165
+ "id": "579612276"
166
+ },
167
+ "message": "we are here ;)",
168
+ "link": "http://www.ustream.tv/channel/iknow!-developers",
169
+ "name": "iKnow! Developers, Ustream.TV: Streaming live from the iKnow! Office in Shibuya: Joi Ito will. Techn",
170
+ "description": "iKnow! Developers @ Ustream.TV: Streaming live from the iKnow! Office in Shibuya: Joi Ito will. Technology,Information Technology",
171
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
172
+ },
173
+ {
174
+ "id": "43097554797",
175
+ "from": {
176
+ "name": "Nov Matake",
177
+ "id": "579612276"
178
+ },
179
+ "picture": "http://blog.matake.jp/assets_c/2009/01/openid-icon-200x200-thumb-143x143-469.png",
180
+ "link": "http://blog.matake.jp/archives/_disqus.html",
181
+ "name": "MovableType \u30b3\u30e1\u30f3\u30c8\u3092 DISQUS \u306b\u7f6e\u304d\u63db\u3048\u3066 Facebook Connect \u5bfe\u5fdc - \u4eac\u306e\u8def",
182
+ "description": " DISQUS \u306f\u30d6\u30ed\u30b0\u306e\u30b3\u30e1\u30f3\u30c8\u90e8\u5206\u3092\u5916\u90e8\u30b5\u30fc\u30d3\u30b9\u3068\u3057\u3066\u63d0\u4f9b\u3059\u308b\u30b5\u30fc\u30d3\u30b9\u3067\u3059\u3002\u901a\u5e38\u306e\u300c\u540d\u524d\u3001\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u3001URL\u300d\u3067\u306e\u30b3\u30e1\u30f3\u30c8\u6295\u7a3f\u3068\u3068\u3082\u306b\u3001DISQUS \u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u306e\u30ed\u30b0\u30a4\u30f3\u3068 Fac...",
183
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
184
+ },
185
+ {
186
+ "id": "51758176039",
187
+ "from": {
188
+ "name": "Nov Matake",
189
+ "id": "579612276"
190
+ },
191
+ "message": "Studiamo Italiano insieme!",
192
+ "picture": "http://profile.ak.fbcdn.net/object2/811/99/n11414114965_2502.jpg",
193
+ "name": "iKnow!",
194
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
195
+ },
196
+ {
197
+ "id": "14632736335",
198
+ "from": {
199
+ "name": "Nov Matake",
200
+ "id": "579612276"
201
+ },
202
+ "picture": "http://www.jobster.com/boss/files/c8ec60e0-eb3c-012a-d1a0-001b7842d110",
203
+ "link": "http://www.jobster.com/people/matake",
204
+ "name": "Nobukazu Matake | Tagged on Jobster as ruby, rails, ruby on rails, web, data mining | Jobster",
205
+ "description": " Meet your future employer with Jobster.",
206
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
207
+ },
208
+ {
209
+ "id": "14432131061",
210
+ "from": {
211
+ "name": "Nov Matake",
212
+ "id": "579612276"
213
+ },
214
+ "message": "I want to work out of Japan",
215
+ "link": "http://www.jobster.com/people/matake",
216
+ "name": "Nobukazu Matake | Tagged on Jobster as ruby, rails, ruby on rails, web, data mining | Jobster",
217
+ "description": " Meet your future employer with Jobster.",
218
+ "icon": "http://static.ak.fbcdn.net/rsrc.php/zB010/hash/9yvl71tw.gif"
219
+ }
220
+ ]
221
+ }
@@ -0,0 +1 @@
1
+ {"id":120765121284251}
@@ -0,0 +1,9 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "name": "Tonari No Totoro",
5
+ "category": "Movie",
6
+ "id": "112260552127112"
7
+ }
8
+ ]
9
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "name": "Utada Hikaru",
5
+ "category": "Musician/band",
6
+ "id": "105806242793688"
7
+ },
8
+ {
9
+ "name": "The Yellow Monkey",
10
+ "category": "Musicians",
11
+ "id": "32548904409"
12
+ },
13
+ {
14
+ "name": "Bank Band",
15
+ "category": "Musicians",
16
+ "id": "28534671472"
17
+ },
18
+ {
19
+ "name": "Mr. Children",
20
+ "category": "Musicians",
21
+ "id": "27868140174"
22
+ },
23
+ {
24
+ "name": "Utada",
25
+ "category": "Musicians",
26
+ "id": "14284377159"
27
+ },
28
+ {
29
+ "name": "Avril Lavigne",
30
+ "category": "Musicians",
31
+ "id": "5413509299"
32
+ }
33
+ ]
34
+ }