4
5
6
7
8
9
10
11
|
# File 'lib/fb_graph/connections/posts.rb', line 4
def posts(options = {})
posts = self.connection(:posts, options)
posts.map! do |post|
Post.new(post.delete(:id), post.merge(
:access_token => options[:access_token] || self.access_token
))
end
end
|