Please make a small donation to allow us to invest resources and improve the service. Thank you.
http://notify.moosa.it:88/[your token]/[your message url encoded]
You have to replace [your token] with the token you received from the notifica_bot and [your message url encoded] with the message that you want to send. The message must be urlencoded properly (if it contains spaces or special characters). Here we provide some examples of calls in various languages.[your token]@notify.moosa.it
Programs and systems can also send an email to [your tocken] @ notify.moosa.it, the system will convert the e-mail text into a push message.Send an email to:
[your token]@notify.moosa.it
$token = '[your token]';
$message = rawurlencode("[your message]");
$result = file_get_contents("http://notify.moosa.it:88/$token/$message");
if ($result=="message sent") {
}
After you installed requests ( pip install requests ):
import requests
token = '[your token]'
message = '[your message]'
response = requests.get("http://notify.moosa.it:88/"+token+"/"+message)
if response.text=="message sent":
print "messaggio inviato"
rawurldecode() {
printf -v REPLY '%b' "${1//%/\\x}"
echo "${REPLY}"
}
TOKEN="[your token]"
MESSAGE=$(php -r "echo rawurlencode('[your message]');")
curl http://notify.moosa.it:88/$TOKEN/$MESSAGE
Dim token As String = "[your token]"
Dim message As String = "[your message]"
My.Computer.Network.DownloadFile("http://notify.moosa.it:88/" & token & "/" & message, "result.txt")
using (WebClient wc = new WebClient())
{
string token = "[your token]";
string message = "[your message]";
wc.DownloadFile("http://notify.moosa.it:88/" + token + "/" + message, "result.txt");
}
var request = require('request');
var token = '[your token]'
var message = '[your message]'
request.get('http://notify.moosa.it:88/'+token+"/"+message, function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log("messaggio inviato");
}
});
If you have CURL function installed in your asterisk, you have to use it replacing [your token] with the token you received from notifica bot, and the extension s with the correct one of your incoming contest.
exten => s,n,noop(${CURL(http://notify.moosa.it:88/[your token]/call%20from%20${CALLERID(num)})})
If you have not CURL installed, you can create a new file (AGI) inside /var/lib/asterisk/agi-bin directory with name "notifica.php" and permissions 755 (chmod 755 notifica.php), with the following contents:
#!/usr/bin/php
<?php
$token = '[your token]';
$message = rawurlencode("call from ".$argv[1]);
$result = file_get_contents("http://notify.moosa.it:88/$token/$message");
and execute it from your diaplan in this way:
exten => s,n,AGI(notifica.php,${CALLERID(num)})
Go to action url settings and put into incoming call the following url (replacing [your token] with the token you received from notifica bot)
http://notify.moosa.it:88/[your token]/call%20from%20$remote
if you want you may associate the alert to other keys or other events.
Use ethernet library to create a simple http request, replace [your token] with the token you received from notifica bot.
#include <Ethernet.h>
char server[] = "notify.moosa.it";
.....
if (client.connect(server, 88)) {
client.println("GET /[your token]/message%20url%20encoded HTTP/1.1");
client.println("Host: www.arduino.cc");
client.println("User-Agent: arduino-ethernet");
client.println("Connection: close");
client.println();
}