Version 1.1.0
Last revised June 06,2018
This project contains some sample Java code to access the Pandorabots API. Use this project if:
- You want to connect your Java or Android project to Pandorabots.
- You have set up an account on developer.pandorabots.com and have an API key.
The simplest way to use the pb-java API is to add pb-java-X.X.X.jar into CLASSPATH. Most commonly, your Java project will simply connect to a pandorabot and talk to it. You can easily implement this with:
public static String botname = "MyBot";
MagicParameters.readParameters();
PandorabotsAPI papi = new PandorabotsAPI(MagicParameters.hostname, MagicParameters.app_id, MagicParameters.user_key);
and
String request = "Hello! My name is Joe.";
String response = papi.talk(botname, request);
The pb-java API depends on the following JAR files. You may import this project with "Existing Maven Project" in Eclipse, or use Gradle, or simply download the JAR files and link them with your project.
- commons-codec-1.6.jar
- commons-logging-1.2.jar
- commons-io-2.4.jar
- fluent-hc-4.4-beta1.jar
- httpclient-4.4-beta1.jar
- httpcore-4.4-beta1.jar
- json-20090211.jar
The pb-java project includes several classes.
The Main class is provided as an example of how to use the Java Pandorabots API. You may wish to customize the code in PandorabotsAPI to suit your application needs. The code provided is intentended as an example only.
The MagicParameters class encapsulates some global variables for your application:
static String version
: the version number of the API.static String hostname
: the hostname of the Pandorabots hoststatic String app_id
: your Applicato ID on the Pandorabots hoststatic String user_key
: your Pandorabots API user key (available from developer.pandorabots.com)static boolean debug
: A variable that tells the API whether to display debugging information.
MagicParameters also contains a pair of methods to read the global configuration data:
static void readParameters()
static void readParameters(String configFileName)
The first method looks for a file called config.txt in the current working directory. Use the second method if you want to specify a different file.
Create config.txt file according to following format with one parameter per line.
v1.1.0 includes Referrer Filters. User can set Referrer Filters on developer.pandorabots.com. If Referrer Filter is set on developer.pandorabots.com it is mandatory to set referrer flag in config.txt; else optional.
parametername:value
e.g.
user_key:f0123456789abcdef0123456789abcde
app_id:1234567890123
hostname:aiaas.pandorabots.com
debug:true
referrer:(set on developer.pandorabots.com)
The user_key and app_id are provided at developer.pandorabots.com as "User Key" and "Application ID respectively.
Currently pb-java v1.1.0 supports following talk and atalk functionalities
talk(botname, input)
talk(botname, clientId, input)
talk(botname, clientId, input, extra) //with recent calls always true
atalk(botname,input)
atalk(botname,clientId,input)
atalk(botname,clientId,input,extra) //with recent calls always true
talk
- @return text of bot's response
- @return metadata response if extra set to true
atalk
- @return text of bot's response
- @return newly generated clientId
- @return metadata response if extra set to true
The class PandorabotsAPI is the core of the code to access the Pandorabots API. Please refer Java DOC of Pandorabots API.