pb-java

Version 1.1.0

Last revised June 06,2018

Pandorabots API module for Java

This project contains some sample Java code to access the Pandorabots API. Use this project if:

Usage

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);

Dependencies

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.

Classes

The pb-java project includes several classes.

Main

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.

MagicParameters

The MagicParameters class encapsulates some global variables for your application:

MagicParameters also contains a pair of methods to read the global configuration data:

config.txt

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.

To talk to the bot

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

atalk

PandorabotsAPI

The class PandorabotsAPI is the core of the code to access the Pandorabots API. Please refer Java DOC of Pandorabots API.