A Java client for Etherpad Lite’s HTTP JSON API.
Example:
EPLiteClient api = new EPLiteClient(“http://etherpad.mysite.com”, “FJ7jksalksdfj83jsdflkj”);
HashMap pad = api.getText(“my_pad”);
String pad = pad.get(“text”).toString();
Live Document Collaboration from the Ethervillage
A Java client for Etherpad Lite’s HTTP JSON API.
Example:
EPLiteClient api = new EPLiteClient(“http://etherpad.mysite.com”, “FJ7jksalksdfj83jsdflkj”);
HashMap pad = api.getText(“my_pad”);
String pad = pad.get(“text”).toString();
Hello,
I try to use EPLiteClient 1.2.1. The client works with GET methods but fails with post methods. EPL’s logs has no trace of the post requests.
May I review the EPL config ?
Thank you for your help
Claude