Module: Bobot::GraphFacebook

Included in:
Commander, Profile, User
Defined in:
lib/bobot/graph_facebook.rb

Defined Under Namespace

Modules: ClassMethods, InstanceMethods

Constant Summary collapse

GRAPH_FB_URL =
'https://graph.facebook.com/v3.2'.freeze
GRAPH_HEADERS =
{ Accept: "application/json", "Content-Type" => "application/json; charset=utf-8" }.freeze

Class Method Summary collapse

Class Method Details

.included(receiver) ⇒ Object



75
76
77
78
# File 'lib/bobot/graph_facebook.rb', line 75

def self.included(receiver)
  receiver.extend         ClassMethods
  receiver.send :include, InstanceMethods
end