Sha256: 3ebfbe290945a89762678f22e19bcf7fc5955d6a69facb871c99e930ae2e9a7e
Contents?: true
Size: 602 Bytes
Versions: 69
Compression:
Stored size: 602 Bytes
Contents
module FbGraph module OpenGraph module UserContext def og_actions(action, options = {}) actions = self.connection(action, options) actions.map! do |_action_| Action.new _action_[:id], _action_.merge( :access_token => options[:access_token] || self.access_token ) end end def og_action!(action, options = {}) action = post options.merge(:connection => action) Action.new action[:id], action.merge( :access_token => options[:access_token] || self.access_token ) end end end end
Version data entries
69 entries across 69 versions & 1 rubygems