palidanx-fb_graph 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (211) hide show
  1. data/.document +5 -0
  2. data/.gitignore +21 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +308 -0
  5. data/Rakefile +49 -0
  6. data/VERSION +1 -0
  7. data/assets/fb_graph.ai +1726 -6
  8. data/assets/fb_graph.png +0 -0
  9. data/fb_graph.gemspec +327 -0
  10. data/lib/fb_graph.rb +75 -0
  11. data/lib/fb_graph/album.rb +133 -0
  12. data/lib/fb_graph/application.rb +57 -0
  13. data/lib/fb_graph/auth.rb +52 -0
  14. data/lib/fb_graph/auth/cookie.rb +43 -0
  15. data/lib/fb_graph/checkin.rb +44 -0
  16. data/lib/fb_graph/collection.rb +44 -0
  17. data/lib/fb_graph/comment.rb +20 -0
  18. data/lib/fb_graph/comparison.rb +9 -0
  19. data/lib/fb_graph/connection.rb +30 -0
  20. data/lib/fb_graph/connections.rb +3 -0
  21. data/lib/fb_graph/connections/accounts.rb +58 -0
  22. data/lib/fb_graph/connections/activities.rb +14 -0
  23. data/lib/fb_graph/connections/albums.rb +96 -0
  24. data/lib/fb_graph/connections/attending.rb +18 -0
  25. data/lib/fb_graph/connections/books.rb +14 -0
  26. data/lib/fb_graph/connections/checkins.rb +22 -0
  27. data/lib/fb_graph/connections/comments.rb +39 -0
  28. data/lib/fb_graph/connections/declined.rb +18 -0
  29. data/lib/fb_graph/connections/events.rb +21 -0
  30. data/lib/fb_graph/connections/feed.rb +90 -0
  31. data/lib/fb_graph/connections/friends.rb +14 -0
  32. data/lib/fb_graph/connections/groups.rb +14 -0
  33. data/lib/fb_graph/connections/home.rb +14 -0
  34. data/lib/fb_graph/connections/insights.rb +13 -0
  35. data/lib/fb_graph/connections/interests.rb +14 -0
  36. data/lib/fb_graph/connections/invited.rb +14 -0
  37. data/lib/fb_graph/connections/likes.rb +16 -0
  38. data/lib/fb_graph/connections/links.rb +21 -0
  39. data/lib/fb_graph/connections/maybe.rb +18 -0
  40. data/lib/fb_graph/connections/members.rb +14 -0
  41. data/lib/fb_graph/connections/movies.rb +14 -0
  42. data/lib/fb_graph/connections/music.rb +14 -0
  43. data/lib/fb_graph/connections/noreply.rb +14 -0
  44. data/lib/fb_graph/connections/notes.rb +21 -0
  45. data/lib/fb_graph/connections/photos.rb +21 -0
  46. data/lib/fb_graph/connections/picture.rb +14 -0
  47. data/lib/fb_graph/connections/posts.rb +14 -0
  48. data/lib/fb_graph/connections/statuses.rb +14 -0
  49. data/lib/fb_graph/connections/subscriptions.rb +53 -0
  50. data/lib/fb_graph/connections/tagged.rb +14 -0
  51. data/lib/fb_graph/connections/television.rb +14 -0
  52. data/lib/fb_graph/connections/videos.rb +14 -0
  53. data/lib/fb_graph/education.rb +25 -0
  54. data/lib/fb_graph/event.rb +47 -0
  55. data/lib/fb_graph/group.rb +27 -0
  56. data/lib/fb_graph/insight.rb +14 -0
  57. data/lib/fb_graph/link.rb +28 -0
  58. data/lib/fb_graph/node.rb +121 -0
  59. data/lib/fb_graph/note.rb +28 -0
  60. data/lib/fb_graph/page.rb +41 -0
  61. data/lib/fb_graph/photo.rb +41 -0
  62. data/lib/fb_graph/post.rb +50 -0
  63. data/lib/fb_graph/searchable.rb +25 -0
  64. data/lib/fb_graph/searchable/result.rb +31 -0
  65. data/lib/fb_graph/status.rb +23 -0
  66. data/lib/fb_graph/subscription.rb +14 -0
  67. data/lib/fb_graph/tag.rb +16 -0
  68. data/lib/fb_graph/user.rb +89 -0
  69. data/lib/fb_graph/venue.rb +17 -0
  70. data/lib/fb_graph/video.rb +28 -0
  71. data/lib/fb_graph/work.rb +35 -0
  72. data/spec/fake_json/albums/photos/matake_private.json +97 -0
  73. data/spec/fake_json/albums/photos/post_with_valid_access_token.json +1 -0
  74. data/spec/fake_json/applications/subscriptions/fb_graph_private.json +12 -0
  75. data/spec/fake_json/checkins/search_private.json +54 -0
  76. data/spec/fake_json/checkins/search_public.json +6 -0
  77. data/spec/fake_json/events/attending/post_with_valid_access_token.json +1 -0
  78. data/spec/fake_json/events/attending/smartday_private.json +44 -0
  79. data/spec/fake_json/events/declined/post_with_valid_access_token.json +1 -0
  80. data/spec/fake_json/events/declined/smartday_private.json +720 -0
  81. data/spec/fake_json/events/invited/smartday_private.json +7092 -0
  82. data/spec/fake_json/events/maybe/post_with_valid_access_token.json +1 -0
  83. data/spec/fake_json/events/maybe/smartday_private.json +956 -0
  84. data/spec/fake_json/events/noreply/smartday_private.json +896 -0
  85. data/spec/fake_json/groups/members/emacs_private.json +1996 -0
  86. data/spec/fake_json/pages/checkins/gowalla_private.json +113 -0
  87. data/spec/fake_json/pages/checkins/gowalla_public.json +6 -0
  88. data/spec/fake_json/pages/notes/post_with_valid_access_token.json +1 -0
  89. data/spec/fake_json/pages/platform_private.json +13 -0
  90. data/spec/fake_json/pages/platform_public.json +13 -0
  91. data/spec/fake_json/pages/statuses/platform_private.json +258 -0
  92. data/spec/fake_json/pages/statuses/platform_public.json +6 -0
  93. data/spec/fake_json/posts/comments/post_with_invalid_access_token.json +1 -0
  94. data/spec/fake_json/posts/comments/post_with_valid_access_token.json +1 -0
  95. data/spec/fake_json/posts/comments/post_without_access_token.json +1 -0
  96. data/spec/fake_json/posts/likes/post_with_invalid_access_token.json +1 -0
  97. data/spec/fake_json/posts/likes/post_with_valid_access_token.json +1 -0
  98. data/spec/fake_json/posts/likes/post_without_access_token.json +1 -0
  99. data/spec/fake_json/posts/platform_private.json +97 -0
  100. data/spec/fake_json/posts/platform_public.json +52 -0
  101. data/spec/fake_json/users/accounts/matake_private.json +14 -0
  102. data/spec/fake_json/users/accounts/matake_private_with_manage_pages_permission.json +16 -0
  103. data/spec/fake_json/users/accounts/matake_public.json +6 -0
  104. data/spec/fake_json/users/activities/arjun_private.json +24 -0
  105. data/spec/fake_json/users/activities/arjun_public.json +6 -0
  106. data/spec/fake_json/users/albums/matake_private.json +36 -0
  107. data/spec/fake_json/users/albums/matake_public.json +6 -0
  108. data/spec/fake_json/users/albums/post_with_valid_access_token.json +1 -0
  109. data/spec/fake_json/users/arjun_private.json +109 -0
  110. data/spec/fake_json/users/arjun_public.json +12 -0
  111. data/spec/fake_json/users/books/matake_private.json +9 -0
  112. data/spec/fake_json/users/books/matake_public.json +6 -0
  113. data/spec/fake_json/users/checkins/mattt_private.json +389 -0
  114. data/spec/fake_json/users/checkins/mattt_public.json +6 -0
  115. data/spec/fake_json/users/events/matake_private.json +71 -0
  116. data/spec/fake_json/users/events/matake_public.json +6 -0
  117. data/spec/fake_json/users/events/post_with_valid_access_token.json +1 -0
  118. data/spec/fake_json/users/feed/arjun_private.json +520 -0
  119. data/spec/fake_json/users/feed/arjun_public.json +520 -0
  120. data/spec/fake_json/users/feed/post_with_invalid_access_token.json +1 -0
  121. data/spec/fake_json/users/feed/post_with_valid_access_token.json +1 -0
  122. data/spec/fake_json/users/feed/post_without_access_token.json +1 -0
  123. data/spec/fake_json/users/friends/arjun_private.json +6 -0
  124. data/spec/fake_json/users/friends/arjun_public.json +6 -0
  125. data/spec/fake_json/users/friends/me_private.json +524 -0
  126. data/spec/fake_json/users/friends/me_public.json +6 -0
  127. data/spec/fake_json/users/groups/matake_private.json +48 -0
  128. data/spec/fake_json/users/groups/matake_public.json +6 -0
  129. data/spec/fake_json/users/home/arjun_private.json +6 -0
  130. data/spec/fake_json/users/home/arjun_public.json +6 -0
  131. data/spec/fake_json/users/home/me_private.json +460 -0
  132. data/spec/fake_json/users/home/me_private_next.json +382 -0
  133. data/spec/fake_json/users/home/me_private_previous.json +36 -0
  134. data/spec/fake_json/users/home/me_public.json +6 -0
  135. data/spec/fake_json/users/interests/matake_private.json +14 -0
  136. data/spec/fake_json/users/likes/arjun_private.json +1394 -0
  137. data/spec/fake_json/users/likes/arjun_public.json +6 -0
  138. data/spec/fake_json/users/links/matake_private.json +221 -0
  139. data/spec/fake_json/users/links/post_with_valid_access_token.json +1 -0
  140. data/spec/fake_json/users/me_private.json +128 -0
  141. data/spec/fake_json/users/me_public.json +6 -0
  142. data/spec/fake_json/users/movies/matake_private.json +9 -0
  143. data/spec/fake_json/users/music/matake_private.json +34 -0
  144. data/spec/fake_json/users/notes/matake_private.json +308 -0
  145. data/spec/fake_json/users/posts/arjun_private.json +386 -0
  146. data/spec/fake_json/users/posts/arjun_public.json +386 -0
  147. data/spec/fake_json/users/statuses/arjun_private.json +233 -0
  148. data/spec/fake_json/users/statuses/arjun_public.json +6 -0
  149. data/spec/fake_json/users/tagged/arjun_private.json +308 -0
  150. data/spec/fake_json/users/tagged/arjun_public.json +308 -0
  151. data/spec/fake_json/users/television/matake_private.json +9 -0
  152. data/spec/fake_json/users/videos/kirk_private.json +41 -0
  153. data/spec/fb_graph/album_spec.rb +61 -0
  154. data/spec/fb_graph/application_spec.rb +23 -0
  155. data/spec/fb_graph/auth_spec.rb +35 -0
  156. data/spec/fb_graph/checkin_spec.rb +29 -0
  157. data/spec/fb_graph/collection_spec.rb +45 -0
  158. data/spec/fb_graph/comment_spec.rb +31 -0
  159. data/spec/fb_graph/connection_spec.rb +38 -0
  160. data/spec/fb_graph/connections/accounts_spec.rb +47 -0
  161. data/spec/fb_graph/connections/activities_spec.rb +34 -0
  162. data/spec/fb_graph/connections/albums_spec.rb +60 -0
  163. data/spec/fb_graph/connections/attending_spec.rb +24 -0
  164. data/spec/fb_graph/connections/books_spec.rb +33 -0
  165. data/spec/fb_graph/connections/checkins_spec.rb +109 -0
  166. data/spec/fb_graph/connections/comments_spec.rb +85 -0
  167. data/spec/fb_graph/connections/declined_spec.rb +24 -0
  168. data/spec/fb_graph/connections/events_spec.rb +53 -0
  169. data/spec/fb_graph/connections/feed_spec.rb +102 -0
  170. data/spec/fb_graph/connections/friends_spec.rb +50 -0
  171. data/spec/fb_graph/connections/groups_spec.rb +32 -0
  172. data/spec/fb_graph/connections/home_spec.rb +58 -0
  173. data/spec/fb_graph/connections/interests_spec.rb +14 -0
  174. data/spec/fb_graph/connections/invited_spec.rb +14 -0
  175. data/spec/fb_graph/connections/likes_spec.rb +33 -0
  176. data/spec/fb_graph/connections/links_spec.rb +33 -0
  177. data/spec/fb_graph/connections/maybe_spec.rb +24 -0
  178. data/spec/fb_graph/connections/members_spec.rb +14 -0
  179. data/spec/fb_graph/connections/movies_spec.rb +14 -0
  180. data/spec/fb_graph/connections/music_spec.rb +14 -0
  181. data/spec/fb_graph/connections/noreply_spec.rb +14 -0
  182. data/spec/fb_graph/connections/notes_spec.rb +32 -0
  183. data/spec/fb_graph/connections/photos_spec.rb +30 -0
  184. data/spec/fb_graph/connections/picture_spec.rb +29 -0
  185. data/spec/fb_graph/connections/posts_spec.rb +35 -0
  186. data/spec/fb_graph/connections/statuses_spec.rb +74 -0
  187. data/spec/fb_graph/connections/subscriptions_spec.rb +18 -0
  188. data/spec/fb_graph/connections/tagged_spec.rb +42 -0
  189. data/spec/fb_graph/connections/television_spec.rb +14 -0
  190. data/spec/fb_graph/connections/videos_spec.rb +14 -0
  191. data/spec/fb_graph/education_spec.rb +61 -0
  192. data/spec/fb_graph/event_spec.rb +50 -0
  193. data/spec/fb_graph/group_spec.rb +46 -0
  194. data/spec/fb_graph/insight_spec.rb +17 -0
  195. data/spec/fb_graph/link_spec.rb +43 -0
  196. data/spec/fb_graph/node_spec.rb +13 -0
  197. data/spec/fb_graph/note_spec.rb +37 -0
  198. data/spec/fb_graph/page_spec.rb +56 -0
  199. data/spec/fb_graph/photo_spec.rb +60 -0
  200. data/spec/fb_graph/post_spec.rb +71 -0
  201. data/spec/fb_graph/status_spec.rb +31 -0
  202. data/spec/fb_graph/subscription_spec.rb +5 -0
  203. data/spec/fb_graph/tag_spec.rb +20 -0
  204. data/spec/fb_graph/user_spec.rb +139 -0
  205. data/spec/fb_graph/venue_spec.rb +23 -0
  206. data/spec/fb_graph/video_spec.rb +37 -0
  207. data/spec/fb_graph/work_spec.rb +67 -0
  208. data/spec/helpers/fake_json_helper.rb +11 -0
  209. data/spec/spec.opts +3 -0
  210. data/spec/spec_helper.rb +18 -0
  211. metadata +414 -0
@@ -0,0 +1,113 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "id": "696876187499",
5
+ "from": {
6
+ "name": "Roger Pincombe",
7
+ "id": "12820552"
8
+ },
9
+ "tags": {
10
+ "data": [
11
+ {
12
+ "name": "Mattt Thompson",
13
+ "id": "4810308"
14
+ }
15
+ ]
16
+ },
17
+ "message": "Checking out Austin, TX",
18
+ "place": {
19
+ "id": "120454134658381",
20
+ "name": "Gowalla HQ",
21
+ "location": {
22
+ "latitude": 30.26876,
23
+ "longitude": -97.74962
24
+ }
25
+ },
26
+ "application": {
27
+ "name": "Facebook for iPhone",
28
+ "id": "6628568379"
29
+ },
30
+ "created_time": "2010-09-08T00:09:25+0000"
31
+ },
32
+ {
33
+ "id": "463895351674",
34
+ "from": {
35
+ "name": "Scott Raymond",
36
+ "id": "505421674"
37
+ },
38
+ "tags": {
39
+ "data": [
40
+ {
41
+ "name": "Mattt Thompson",
42
+ "id": "4810308"
43
+ },
44
+ {
45
+ "name": "Sandi Weldon",
46
+ "id": "695370206"
47
+ }
48
+ ]
49
+ },
50
+ "place": {
51
+ "id": "120454134658381",
52
+ "name": "Gowalla HQ",
53
+ "location": {
54
+ "latitude": 30.26876,
55
+ "longitude": -97.74962
56
+ }
57
+ },
58
+ "application": {
59
+ "name": "Facebook for iPhone",
60
+ "id": "6628568379"
61
+ },
62
+ "created_time": "2010-08-20T22:33:26+0000"
63
+ },
64
+ {
65
+ "id": "461099202106",
66
+ "from": {
67
+ "name": "John Marstall",
68
+ "id": "752752106"
69
+ },
70
+ "tags": {
71
+ "data": [
72
+ {
73
+ "name": "Mattt Thompson",
74
+ "id": "4810308"
75
+ },
76
+ {
77
+ "name": "Phillip Bowden",
78
+ "id": "25316885"
79
+ },
80
+ {
81
+ "name": "Brian Bailey",
82
+ "id": "526567227"
83
+ },
84
+ {
85
+ "name": "John Critz",
86
+ "id": "805120116"
87
+ },
88
+ {
89
+ "name": "Keegan Jones",
90
+ "id": "1304370418"
91
+ }
92
+ ]
93
+ },
94
+ "place": {
95
+ "id": "120454134658381",
96
+ "name": "Gowalla HQ",
97
+ "location": {
98
+ "latitude": 30.26876,
99
+ "longitude": -97.74962
100
+ }
101
+ },
102
+ "application": {
103
+ "name": "Facebook for iPhone",
104
+ "id": "6628568379"
105
+ },
106
+ "created_time": "2010-08-19T19:46:24+0000"
107
+ }
108
+ ],
109
+ "paging": {
110
+ "previous": "https://graph.facebook.com/120454134658381/checkins?access_token=134145643294322%7Ce31f8c85a0ad9e63018eb051-579612276%7CgwSx9WAssLi5sW3vqqe8UPGjchY.&limit=25&since=2010-09-08T00%3A09%3A25%2B0000",
111
+ "next": "https://graph.facebook.com/120454134658381/checkins?access_token=134145643294322%7Ce31f8c85a0ad9e63018eb051-579612276%7CgwSx9WAssLi5sW3vqqe8UPGjchY.&limit=25&until=2010-08-19T19%3A46%3A23%2B0000"
112
+ }
113
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "error": {
3
+ "type": "OAuthInvalidTokenException",
4
+ "message": "An access token is required to request this resource."
5
+ }
6
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "19292868552",
3
+ "name": "Facebook Platform",
4
+ "picture": "http://profile.ak.fbcdn.net/profile-ak-snc1/object3/1566/8/s19292868552_1660.jpg",
5
+ "link": "http://www.facebook.com/platform",
6
+ "category": "Technology",
7
+ "username": "platform",
8
+ "founded": "May 2007",
9
+ "company_overview": "Facebook Platform enables anyone to build social applications on Facebook and the web.",
10
+ "mission": "To make the web more open and social.",
11
+ "products": "Facebook Application Programming Interface (API)\nFacebook Query Language (FQL)\nFacebook Markup Language (FBML)\nFacebook JavaScript (FBJS)\nFacebook Connect\n",
12
+ "fan_count": 578214
13
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "19292868552",
3
+ "name": "Facebook Platform",
4
+ "picture": "http://profile.ak.fbcdn.net/profile-ak-snc1/object3/1566/8/s19292868552_1660.jpg",
5
+ "link": "http://www.facebook.com/platform",
6
+ "category": "Technology",
7
+ "username": "platform",
8
+ "founded": "May 2007",
9
+ "company_overview": "Facebook Platform enables anyone to build social applications on Facebook and the web.",
10
+ "mission": "To make the web more open and social.",
11
+ "products": "Facebook Application Programming Interface (API)\nFacebook Query Language (FQL)\nFacebook Markup Language (FBML)\nFacebook JavaScript (FBJS)\nFacebook Connect\n",
12
+ "fan_count": 578214
13
+ }
@@ -0,0 +1,258 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "id": "111081598927600",
5
+ "from": {
6
+ "name": "Facebook Platform",
7
+ "category": "Technology",
8
+ "id": "19292868552"
9
+ },
10
+ "message": "Here's more information on the new social plugins announced at f8 today - http://bit.ly/db8ahS",
11
+ "updated_time": "2010-04-21T20:17:04+0000"
12
+ },
13
+ {
14
+ "id": "115430598485626",
15
+ "from": {
16
+ "name": "Facebook Platform",
17
+ "category": "Technology",
18
+ "id": "19292868552"
19
+ },
20
+ "message": "the f8 keynote has begun! Check out a live stream and live blogging notes under the \"f8\" Live tab <http://apps.facebook.com/feightlive>",
21
+ "updated_time": "2010-04-21T17:20:33+0000"
22
+ },
23
+ {
24
+ "id": "118464504835613",
25
+ "from": {
26
+ "name": "Facebook Platform",
27
+ "category": "Technology",
28
+ "id": "19292868552"
29
+ },
30
+ "message": "We're getting ready for f8! Check out the latest on the f8 Page, including a video from the first event, when Platform launched :: http://bit.ly/ahHl7j",
31
+ "updated_time": "2010-04-15T17:37:03+0000"
32
+ },
33
+ {
34
+ "id": "103999179641109",
35
+ "from": {
36
+ "name": "Facebook Platform",
37
+ "category": "Technology",
38
+ "id": "19292868552"
39
+ },
40
+ "message": "Interested in the latest updates on f8, our developer conference? Become a fan of the f8 Page <http://www.facebook.com/f8>.",
41
+ "updated_time": "2010-04-09T17:37:35+0000"
42
+ },
43
+ {
44
+ "id": "111587482187580",
45
+ "from": {
46
+ "name": "Facebook Platform",
47
+ "category": "Technology",
48
+ "id": "19292868552"
49
+ },
50
+ "message": "Thanks to all of you who bought tickets to f8! We are now officially sold out. Check out the f8 Page for updates over the next month. We\u2019re excited to celebrate the Facebook developer community on April 21!",
51
+ "updated_time": "2010-03-24T23:23:20+0000"
52
+ },
53
+ {
54
+ "id": "103059169731962",
55
+ "from": {
56
+ "name": "Facebook Platform",
57
+ "category": "Technology",
58
+ "id": "19292868552"
59
+ },
60
+ "message": "More tickets for f8 will be released tomorrow at 11:00 AM PDT on the \"Register\" tab of the f8 Page. Tickets have been going fast, so be sure to be among the first to register for the second wave of tickets.",
61
+ "updated_time": "2010-03-23T19:11:08+0000"
62
+ },
63
+ {
64
+ "id": "238913685271",
65
+ "from": {
66
+ "name": "Facebook Platform",
67
+ "category": "Technology",
68
+ "id": "19292868552"
69
+ },
70
+ "message": "f8 2010 announced for April 21-22nd in San Francisco. Save the date! Read the full blog post below.",
71
+ "updated_time": "2009-12-18T19:15:23+0000"
72
+ },
73
+ {
74
+ "id": "139187058704",
75
+ "from": {
76
+ "name": "Facebook Platform",
77
+ "category": "Technology",
78
+ "id": "19292868552"
79
+ },
80
+ "message": "We are excited to integrate our Developer Blog with NetworkedBlogs (fbFund REV recipient) -- keep your eyes open for the new publishing format on this Page. For real-time updates, please follow the blog using NetworkedBlogs here: http://bit.ly/DivTL",
81
+ "updated_time": "2009-09-03T03:43:28+0000"
82
+ },
83
+ {
84
+ "id": "131414211860",
85
+ "from": {
86
+ "name": "Facebook Platform",
87
+ "category": "Technology",
88
+ "id": "19292868552"
89
+ },
90
+ "message": "Blog Post: Postcards from August Developer Events. http://bit.ly/3GXszH",
91
+ "updated_time": "2009-09-02T19:43:22+0000"
92
+ },
93
+ {
94
+ "id": "125117082748",
95
+ "from": {
96
+ "name": "Facebook Platform",
97
+ "category": "Technology",
98
+ "id": "19292868552"
99
+ },
100
+ "message": "Blog Post: fbFund REV: \"Oh! The Places You'll Go!\" http://bit.ly/4y2IH3",
101
+ "updated_time": "2009-09-02T18:22:17+0000"
102
+ },
103
+ {
104
+ "id": "124014878930",
105
+ "from": {
106
+ "name": "Facebook Platform",
107
+ "category": "Technology",
108
+ "id": "19292868552"
109
+ },
110
+ "message": "Blog Post: Graduation Day for fbFund REV Social Incubator is Here! http://bit.ly/lxi8e",
111
+ "updated_time": "2009-09-01T17:20:00+0000"
112
+ },
113
+ {
114
+ "id": "123977709798",
115
+ "from": {
116
+ "name": "Facebook Platform",
117
+ "category": "Technology",
118
+ "id": "19292868552"
119
+ },
120
+ "message": "Blog Post: August 2009 Platform News http://bit.ly/1Wg4uG",
121
+ "updated_time": "2009-09-01T02:03:41+0000"
122
+ },
123
+ {
124
+ "id": "155559050930",
125
+ "from": {
126
+ "name": "Facebook Platform",
127
+ "category": "Technology",
128
+ "id": "19292868552"
129
+ },
130
+ "message": "Blog post: Improving Facebook Share http://bit.ly/8U6nb",
131
+ "updated_time": "2009-08-31T17:46:42+0000"
132
+ },
133
+ {
134
+ "id": "98291520839",
135
+ "from": {
136
+ "name": "Facebook Platform",
137
+ "category": "Technology",
138
+ "id": "19292868552"
139
+ },
140
+ "message": "Username selection is now live: Go to http://www.facebook.com/username/ to choose yours and get a distinct Web address for your profile",
141
+ "updated_time": "2009-06-13T05:06:10+0000"
142
+ },
143
+ {
144
+ "id": "159770665261",
145
+ "from": {
146
+ "name": "Facebook Platform",
147
+ "category": "Technology",
148
+ "id": "19292868552"
149
+ },
150
+ "message": "Buon giorno! Join us in Italy for the Facebook Developer Garage Milan. Facebook\u2019s James Leszczenski will be working with Italian developers to discuss the technical workings of Facebook Connect. Find more details on the event at http://www.facebook.",
151
+ "updated_time": "2009-04-22T00:04:01+0000"
152
+ },
153
+ {
154
+ "id": "84654929578",
155
+ "from": {
156
+ "name": "Facebook Platform",
157
+ "category": "Technology",
158
+ "id": "19292868552"
159
+ },
160
+ "message": "Announcing the fbFund Incubator Program 09! Come to California for the summer to build your startup with up to $100k http://bit.ly/GxAi",
161
+ "updated_time": "2009-04-16T23:21:25+0000"
162
+ },
163
+ {
164
+ "id": "71166339173",
165
+ "from": {
166
+ "name": "Facebook Platform",
167
+ "category": "Technology",
168
+ "id": "19292868552"
169
+ },
170
+ "message": "Want to learn more about Facebook Connect? Join Brent Goldman, Facebook Platform engineer, for the Facebook Developer Garage Barcelona. Attend the event in person or find out about live streaming at http://www.facebook.com/event.php?eid=76543947744.",
171
+ "updated_time": "2009-04-15T07:48:59+0000"
172
+ },
173
+ {
174
+ "id": "75840390944",
175
+ "from": {
176
+ "name": "Facebook Platform",
177
+ "category": "Technology",
178
+ "id": "19292868552"
179
+ },
180
+ "message": "Come visit us at the Web 2.0 expo in San Francisco. We're near the entrance (to the left) and also at booth #615 with Adobe!",
181
+ "updated_time": "2009-04-01T17:16:18+0000"
182
+ },
183
+ {
184
+ "id": "59666929317",
185
+ "from": {
186
+ "name": "Facebook Platform",
187
+ "category": "Technology",
188
+ "id": "19292868552"
189
+ },
190
+ "message": "A few comments have asked about attending garages near you. Start one! http://bit.ly/emQ32",
191
+ "updated_time": "2009-03-27T16:26:18+0000"
192
+ },
193
+ {
194
+ "id": "69087847322",
195
+ "from": {
196
+ "name": "Facebook Platform",
197
+ "category": "Technology",
198
+ "id": "19292868552"
199
+ },
200
+ "message": "New Video: Introduction to Facebook Developer Garage at SXSW - http://www.facebook.com/video/video.php?v=616531184401&saved#/video/video.php?v=616530076621&ref=",
201
+ "updated_time": "2009-03-15T19:26:31+0000"
202
+ },
203
+ {
204
+ "id": "73223676067",
205
+ "from": {
206
+ "name": "Facebook Platform",
207
+ "category": "Technology",
208
+ "id": "19292868552"
209
+ },
210
+ "message": "http://developers.facebook.com/news.php?blog=1&story=210",
211
+ "updated_time": "2009-03-12T06:39:31+0000"
212
+ },
213
+ {
214
+ "id": "69990714024",
215
+ "from": {
216
+ "name": "Facebook Platform",
217
+ "category": "Technology",
218
+ "id": "19292868552"
219
+ },
220
+ "message": "Hoping you like the New Facebook Home Page and Public Profiles. New opportunities for developers. Let us know what you think!",
221
+ "updated_time": "2009-03-12T03:43:46+0000"
222
+ },
223
+ {
224
+ "id": "55809413761",
225
+ "from": {
226
+ "name": "Facebook Platform",
227
+ "category": "Technology",
228
+ "id": "19292868552"
229
+ },
230
+ "message": "is prepping for SXSW. Be sure to come to our exciting events: http://www.facebook.com/platform#/note.php?note_id=55400532301",
231
+ "updated_time": "2009-03-09T22:45:52+0000"
232
+ },
233
+ {
234
+ "id": "135478635485",
235
+ "from": {
236
+ "name": "Facebook Platform",
237
+ "category": "Technology",
238
+ "id": "19292868552"
239
+ },
240
+ "message": "Are you ready for SXSW?",
241
+ "updated_time": "2009-03-06T23:03:43+0000"
242
+ },
243
+ {
244
+ "id": "59328281651",
245
+ "from": {
246
+ "name": "Facebook Platform",
247
+ "category": "Technology",
248
+ "id": "19292868552"
249
+ },
250
+ "message": "http://developers.facebook.com/news.php?blog=1&story=209",
251
+ "updated_time": "2009-03-06T22:56:36+0000"
252
+ }
253
+ ],
254
+ "paging": {
255
+ "previous": "https://graph.facebook.com/19292868552/statuses?access_token=2227470867%7C2.WYzVDx_3poIwJP1QNQ2vwg__.3600.1272117600-579612276%7CvNhS2UE8VCENmslKMACDszaJrDw.&limit=25&since=2010-04-21T20%3A17%3A04%2B0000",
256
+ "next": "https://graph.facebook.com/19292868552/statuses?access_token=2227470867%7C2.WYzVDx_3poIwJP1QNQ2vwg__.3600.1272117600-579612276%7CvNhS2UE8VCENmslKMACDszaJrDw.&limit=25&until=2009-03-06T22%3A56%3A36%2B0000"
257
+ }
258
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "error": {
3
+ "type": "OAuthAccessTokenException",
4
+ "message": "An access token is required to request this resource."
5
+ }
6
+ }
@@ -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,97 @@
1
+ {
2
+ "id": "19292868552_118464504835613",
3
+ "from": {
4
+ "name": "Facebook Platform",
5
+ "category": "Technology",
6
+ "id": "19292868552"
7
+ },
8
+ "message": "We're getting ready for f8! Check out the latest on the f8 Page, including a video from the first event, when Platform launched :: http://bit.ly/ahHl7j",
9
+ "created_time": "2010-04-15T17:37:03+0000",
10
+ "updated_time": "2010-04-22T18:19:13+0000",
11
+ "likes": 61,
12
+ "comments": {
13
+ "data": [
14
+ {
15
+ "id": "19292868552_118464504835613_388624",
16
+ "from": {
17
+ "name": "Sisi GeLap Qu",
18
+ "id": "1458135488"
19
+ },
20
+ "message": "hadir",
21
+ "created_time": "2010-04-15T17:37:52+0000"
22
+ },
23
+ {
24
+ "id": "19292868552_118464504835613_390050",
25
+ "from": {
26
+ "name": "Goran Kaplovic",
27
+ "id": "1849687320"
28
+ },
29
+ "message": "Platform Fans.. would you like to launch your own facebook integrated FMyLife.com 4 free? check this out: http://facebook.com/Anekdotz",
30
+ "created_time": "2010-04-15T20:29:35+0000"
31
+ },
32
+ {
33
+ "id": "19292868552_118464504835613_390487",
34
+ "from": {
35
+ "name": "Manuela Morales",
36
+ "id": "1259255079"
37
+ },
38
+ "message": "become a fan plz http://www.facebook.com/?sk=messages&tid=1426513385890#!/pages/Juanita-Rojas-Gabriela-Bernal/105811462793768?ref=nf <---please become a fannn \u2665",
39
+ "created_time": "2010-04-15T21:23:27+0000"
40
+ },
41
+ {
42
+ "id": "19292868552_118464504835613_391357",
43
+ "from": {
44
+ "name": "Gotti Hase Lepit",
45
+ "id": "1151607928"
46
+ },
47
+ "message": "http://www.facebook.com/home.php#!/pages/Munchen-Germany/Lepit-Clothing/97683488231?ref=ts",
48
+ "created_time": "2010-04-15T23:24:01+0000"
49
+ },
50
+ {
51
+ "id": "19292868552_118464504835613_395097",
52
+ "from": {
53
+ "name": "Sinem \u00d6zt\u00fcrk",
54
+ "id": "1648592169"
55
+ },
56
+ "message": "yetkililerin dikkatin habibe \u00f6zt\u00fcrk budak adl\u0131 hesab\u0131m anlams\u0131zca kapat\u0131lm\u0131\u015f okadar mail \u00e7ektigime g\u00f6re bir ileriye d\u00f6n\u00fck cevap alamad\u0131m ",
57
+ "created_time": "2010-04-16T11:01:56+0000"
58
+ },
59
+ {
60
+ "id": "19292868552_118464504835613_395110",
61
+ "from": {
62
+ "name": "Sinem \u00d6zt\u00fcrk",
63
+ "id": "1648592169"
64
+ },
65
+ "message": "d\u00fcn bir yaz\u0131 yaz\u0131lm\u0131\u015f kimlik fotokopisini istiyor kay\u0131t ederken bu t\u00fcr bilgi istemmemi\u015fken kapat\u0131ktan sonra neye dayanarak bu bilgiyi isteye biliniyor ",
66
+ "created_time": "2010-04-16T11:03:27+0000"
67
+ },
68
+ {
69
+ "id": "19292868552_118464504835613_395124",
70
+ "from": {
71
+ "name": "Sinem \u00d6zt\u00fcrk",
72
+ "id": "1648592169"
73
+ },
74
+ "message": "face yeklilerinden rica ediyorum bu nas\u0131l bir yer cevap bekliyorum ben sorunum i\u00e7in nereye ba\u015f vurmam gerek adresim ba\u015fkalar\u0131 taraf\u0131ndan kullan\u0131lmad\u0131g\u0131ndan nas\u0131l emin olabilirim benim resmimde vard\u0131 belkide resmimi kullanacak \nl\u00fctfen cevap",
75
+ "created_time": "2010-04-16T11:06:01+0000"
76
+ },
77
+ {
78
+ "id": "19292868552_118464504835613_429610",
79
+ "from": {
80
+ "name": "Mubashir Tanvir Zaver \u0645\u0628\u0634\u0631\u062a\u0646\u0648\u06cc\u0631\u0632\u06cc\u0648\u0631",
81
+ "id": "1181826641"
82
+ },
83
+ "message": ".\nThe \"AMAZING\" Page:\n\nhttp://www.facebook.com/profile.php?id=1181826641&ref=profile#!/pages/AMAZING/10150157765120055?ref=ts",
84
+ "created_time": "2010-04-20T14:48:57+0000"
85
+ },
86
+ {
87
+ "id": "19292868552_118464504835613_449320",
88
+ "from": {
89
+ "name": "Steve Boyer",
90
+ "id": "17814467"
91
+ },
92
+ "message": "These changes are amazing. Watch out world! FB is coming!",
93
+ "created_time": "2010-04-22T18:19:13+0000"
94
+ }
95
+ ]
96
+ }
97
+ }