Module: Bobot::GraphFacebook
- Included in:
- Commander, Profile, Subscription, User
- Defined in:
- lib/bobot/graph_facebook.rb
Defined Under Namespace
Modules: ClassMethods, InstanceMethods
Constant Summary collapse
- GRAPH_FB_URL =
'https://graph.facebook.com/v2.11'.freeze
- GRAPH_HEADERS =
{ Accept: "application/json", "Content-Type" => "application/json; charset=utf-8" }.freeze
Class Method Summary collapse
Class Method Details
.included(receiver) ⇒ Object
64 65 66 67 |
# File 'lib/bobot/graph_facebook.rb', line 64 def self.included(receiver) receiver.extend ClassMethods receiver.send :include, InstanceMethods end |