0.0
No commit activity in last 3 years
No release in over 3 years
just use Pandorabots.talk(bot_id, input, cust_id). See http://www.pandorabots.com/botmaster/en/faq#h2 for more info on api
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

A simple ruby api for http://www.pandorabots.com/ See http://www.pandorabots.com/botmaster/en/faq#h2 for api info

Usage (eventually):

require "rubygems"
require "pandorabots"

response = Pandorabots.talk(bot_id, input, cust_id)

if (response[:success])
	bot_id = response[:bot_id]
	cust_id = response[:cust_id]
	input = response[:input]
	ouput = response[:ouput]
else
	error_message = response[:output]
end