1
PHP Send Message to Synology Chat.
Игорь Барков edited this page 2021-09-27 11:47:11 +00:00
<?php
function sendBot($message) {
$options = [
'api' => 'SYNO.Chat.External',
'method' => 'incoming',
'version' => 2,
'token' => 'bvogni9XyNBRjQmIjmrEXZ92J6JttDJNciJCWJaoBj6So9SpS44BC8vEjE7GR70Y',
'payload' => json_encode(['text'=>$message]),
];
$link = 'https://likom.myds.me/chat/webapi/entry.cgi?';
return file_get_contents($link.http_build_query($options));
}
if (isset($_GET['m'])) {
echo sendBot($_GET['m']);
}