Hi
I am currently trying this out: https://www.callmebot.com/
The instructions are rather simple to follow.
I am currently trying this out: https://www.callmebot.com/
The instructions are rather simple to follow.
Private Sub btnSendTelegram_Click (e As BANanoEvent)
'save settings
Dim ls As Map = CreateMap()
ls.Put("phone", txtTelephone.Value)
ls.Put("api", txtAPIKey.Value)
banano.SetLocalStorage2("callmebot", banano.ToJson(ls))
'
btnSendTelegram.Loading = True
Dim api As SDUIFetch
api.Initialize("https://api.callmebot.com/text.php")
api.AddParameter("user", txtTelephone.Value)
api.AddParameter("text", txtMessage.Value)
banano.Await(api.GetWait)
btnSendTelegram.Loading = False
End Sub
Private Sub btnSend_Click (e As BANanoEvent)
'save settings
Dim ls As Map = CreateMap()
ls.Put("phone", txtTelephone.Value)
ls.Put("api", txtAPIKey.Value)
banano.SetLocalStorage2("callmebot", banano.ToJson(ls))
'
btnSend.Loading = True
Dim api As SDUIFetch
api.Initialize("https://api.callmebot.com/whatsapp.php")
api.AddParameter("source", "web")
api.AddParameter("phone", txtTelephone.Value)
api.AddParameter("apikey", txtAPIKey.Value)
api.AddParameter("text", txtMessage.Value)
banano.Await(api.GetWait)
btnSend.Loading = False
End Sub
Private Sub btnSendMessenger_Click (e As BANanoEvent)
'save settings
Dim ls As Map = CreateMap()
ls.Put("phone", txtTelephone.Value)
ls.Put("api", txtAPIKey.Value)
banano.SetLocalStorage2("callmebot", banano.ToJson(ls))
'
btnSendMessenger.Loading = True
Dim api As SDUIFetch
api.Initialize("https://api.callmebot.com/facebook/send.php")
api.AddParameter("apikey", txtAPIKey.Value)
api.AddParameter("text", txtMessage.Value)
banano.Await(api.GetWait)
btnSendMessenger.Loading = False
End Sub
I am not sure, you can visit their site on the first post and find out.hi
it is possible to send interactive messages?
best regards