任何人都可以帮助我了解在XPages和JavaBean中进行Webhook的示例吗?
我正在开发一些简单的Telegram Bot,但是我不明白如何实现Webhook。
我在此页面中看到,在Google脚本中似乎是REST调用,是吗?
https://medium.com/@unnikked/how-to-create-your-first-telegram-bot-9005c08a5aa5
这是入口点:
var tgToken = '3453535:kjxxxx-04yt';
function doPost(e) {
// Make sure to only reply to json requests
if(e.postData.type == "application/json") {
// Parse the update sent from Telegram
var update = JSON.parse(e.postData.contents);
// Instantiate the bot passing the update
var bot = new Bot(tgToken, update);
// If the update is valid, process it
if (update) {
bot.process();
}
}
}