Module: FbGraph::Connections::Insights
- Included in:
- Application
- Defined in:
- lib/fb_graph/connections/insights.rb
Instance Method Summary collapse
Instance Method Details
#insights(options = {}) ⇒ Object
4 5 6 7 8 9 10 |
# File 'lib/fb_graph/connections/insights.rb', line 4 def insights( = {}) [:access_token] ||= self.access_token || get_access_token([:secret]) insights = self.connection(:insights, ) insights.map! do |insight| Insight.new(insight.merge(:access_token => [:access_token])) end end |