Создал(а) 'PHP Send Message to Synology Chat.'
18
PHP-Send-Message-to-Synology-Chat..md
Normal file
18
PHP-Send-Message-to-Synology-Chat..md
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
```php
|
||||||
|
<?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']);
|
||||||
|
}
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user