Join Bot Libre's Partner and Affiliate program and support our free open platform
Bot Libre Forum : Connect your Bot to the World - XML, JSON, Web Services, HTML Scraping, Twitter, Facebook, Telegram, Email

RE: Connect your Bot to the World - XML, JSON, Web Services, HTML Scraping, Twitter, Facebook, Telegram, Email

by admin posted Aug 10 2017, 12:37

It should work the same. Try using the debug() to see what is occurring.

var a = conversation.getLast(#input, 1).input;
debug(a);
var s = a.substring(3,a.size());

The debug will be printed to the log in chat if you click on the "debug" checkbox while chatting and select FINE as the level.

Also try ensuring it is a string.

a = a.toString();
var s = a.substring(3, a.size());

For an HTTP POST request use,

(XML)
Http.postXML(url, xmlObject);

or, (JSON)
Http.postJSON(url, jsonObject);

or, (form params)
Http.postHTML(url, params);

See,
https://www.botlibre.com/manual-self.jsp#http


Id: 18619208
Posted: Aug 10 2017, 12:37
Replies: 0
Views: 3650, today: 3, week: 6, month: 11
0 0 0.0/5