Module: FbGraph::Connections::Insights
- Included in:
- Application, Page
- 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 11 |
# File 'lib/fb_graph/connections/insights.rb', line 4 def insights( = {}) [:access_token] ||= self.access_token [:access_token] ||= get_access_token([:secret]) if respond_to?(:get_access_token) insights = self.connection(:insights, .merge(:connection_scope => connection_scope())) insights.map! do |insight| Insight.new(insight.delete(:id), insight.merge(:access_token => [:access_token])) end end |