Sha256: 6cd93b84a062640664b2c8757d9d13606e14e1fddc6a2bb14123664817ca3858
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 KB
Contents
require 'faraday' require 'faraday_middleware' require 'uri' require 'pp' module MotionAI class Client API_ENDPOINT = 'https://api.motion.ai/1.0' GET_CONVERSATIONS_API_PATH = '/getConversations' MESSAGE_BOT_API_PATH = '/messageBot' attr_accessor: bot_id def initialize(api_key, bot_id) @api_key = api_key @bot_id = bot_id @http = Faraday.new(url: API_ENDPOINT) do |conn| conn.response :json, content_type: /\bjson$/ conn.adapter Faraday.default_adapter end end def message_bot(params = {}) params[:key] = @api_key params[:bot] = @bot_id required = [:bot, :msg, :session, :key] required.each do |param| unless params.key? param raise "Required param #{param} not present" end end @http.get URI.join(API_ENDPOINT, MESSAGE_BOT_API_PATH), params end def get_conversations(params = {}) params[:key] = @api_key required = [:key] required.each do |param| unless params.key? param raise "Required param #{param} not present" end end @http.get URI.join(API_ENDPOINT, GET_CONVERSATIONS_API_PATH), params end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
motion-ai-0.0.2 | lib/motion-ai/client.rb |
motion-ai-0.0.1 | lib/motion-ai/client.rb |