Sha256: f919a889078985cfb774f6d721e9f42861a2cf1bd331e08bbd8f1331ea2de6c3

Contents?: true

Size: 443 Bytes

Versions: 22

Compression:

Stored size: 443 Bytes

Contents

module Bobot
  module Profile
    include Bobot::GraphFacebook

    def get(query:)
      graph_get '/me/messenger_profile', query: query
    end
    module_function :get

    def set(body:, query:)
      graph_post '/me/messenger_profile', body: body, query: query
    end
    module_function :set

    def unset(body:, query:)
      graph_delete '/me/messenger_profile', body: body, query: query
    end
    module_function :unset
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
bobot-5.0.4 lib/bobot/profile.rb
bobot-5.0.3 lib/bobot/profile.rb
bobot-5.0.2 lib/bobot/profile.rb
bobot-5.0.1 lib/bobot/profile.rb
bobot-5.0.0 lib/bobot/profile.rb
bobot-4.15.0 lib/bobot/profile.rb
bobot-4.14.0 lib/bobot/profile.rb
bobot-4.13.1 lib/bobot/profile.rb
bobot-4.13.0 lib/bobot/profile.rb
bobot-4.11.0 lib/bobot/profile.rb
bobot-4.10.0 lib/bobot/profile.rb
bobot-4.9.0 lib/bobot/profile.rb
bobot-4.8.0 lib/bobot/profile.rb
bobot-4.7.0 lib/bobot/profile.rb
bobot-4.6.0 lib/bobot/profile.rb
bobot-4.5.0 lib/bobot/profile.rb
bobot-4.4.1 lib/bobot/profile.rb
bobot-4.4.0 lib/bobot/profile.rb
bobot-4.3.1 lib/bobot/profile.rb
bobot-4.3.0 lib/bobot/profile.rb