TelegramApiServer/README.md

77 lines
3.6 KiB
Markdown
Raw Normal View History

2018-12-24 12:54:28 +01:00
# TelegramSwooleClient
2019-01-23 12:31:45 +01:00
Fast, simple, async php telegram client and parser:
2019-03-12 14:37:35 +01:00
[MadelineProto](https://github.com/danog/MadelineProto) and [Swoole](https://github.com/swoole/swoole-src) Server
2019-03-12 14:37:35 +01:00
* Online server for tests (previous version, different request syntax): https://tg.i-c-a.su
* My content aggregator: [https://i-c-a.su](https://i-c-a.su)
2019-03-12 14:37:35 +01:00
* Im using this microservice in: [my TelegramRSS microservice](https://github.com/xtrime-ru/TelegramRSS)
**Features**
* Fast async swoole server
2019-01-20 18:20:41 +01:00
* Use as micro-service to access telegram api
* Get any public telegram posts from groups as json
**Installation**
1. Get app_id and app_hash at [my.telegram.org](https://my.telegram.org/)
1. Swoole extension required: [Install swoole](https://github.com/swoole/swoole-src#%EF%B8%8F-installation)
2019-03-05 15:28:32 +01:00
1. `composer install` to install required libs
1. Create .env from .env.example
1. Fill variables in .env
2019-03-05 15:28:32 +01:00
_Optional:_
1. Use supervisor to monitor and restart swoole servers. Example of `/etc/supervisor/conf.d/telegram_rss.conf`:
```
[program:telegram_client]
command=/usr/bin/php /home/admin/web/tg.i-c-a.su/TelegramSwooleClient/server.php
numprocs=1
directory=/home/admin/web/tg.i-c-a.su/TelegramSwooleClient/
autostart=true
autorestart=true
2019-03-12 15:01:22 +01:00
stdout_logfile=none
redirect_stderr=true
2019-03-05 15:28:32 +01:00
```
**Usage**
1. Run server/parser
```
php server.php [--help] [-a|--address=127.0.0.1] [-p|--port=9503]
Options:
--help Show this message
2019-03-19 00:38:32 +01:00
-a --address Server ip (optional) (example: 127.0.0.1)
-p --port Server port (optional) (example: 9503)
2019-03-19 00:38:32 +01:00
-s --session Prefix for session file (optional) (example: xtrime)
2019-03-19 00:38:32 +01:00
Also options can be set in .env file (see .env.example)
```
2019-01-20 18:20:41 +01:00
1. Access telegram api directly via simple get requests.
2019-02-03 19:17:38 +01:00
Rules:
* All methods from MadelineProto supported: [Methods List](https://docs.madelineproto.xyz/API_docs/methods/)
* Url: `http://%address%:%port%/api/%class%.%method%/?%param1%=%val%`
2019-01-20 18:20:41 +01:00
* <b>Important: api available only from ip in whitelist.</b>
By default it is: `127.0.0.1`
You can add client ip in .env file to `API_CLIENT_WHITELIST` (use json format)
2019-02-03 19:17:38 +01:00
* If method is inside class (messages, contacts and etc.) use '.' to separate class from method:
`http://127.0.0.1:9503/api/contacts.getContacts`
* If method requires array of values, use any name of array, for example 'data':
`?data[peer]=@xtrime&data[message]=Hello!`. Order of parameters does't matter in this case.
* If method requires one or multiple separate parameters (not inside array) then pass parameters with any names but **in strict order**:
`http://127.0.0.1:9503/api/get_info/?id=@xtrime` or `http://127.0.0.1:9503/api/get_info/?abcd=@xtrime` works the same
2019-01-20 18:20:41 +01:00
Examples:
* get_info about channel/user: `http://127.0.0.1:9503/api/get_info/?id=@xtrime`
* get_info about currect account: `http://127.0.0.1:9503/api/get_self`
2019-02-03 19:17:38 +01:00
* repost: `http://127.0.0.1:9503/api/messages.forwardMessages/?data[from_peer]=@xtrime&data[to_peer]=@xtrime&data[id]=1234`
2019-01-20 18:20:41 +01:00
* get messages from channel/user: `http://127.0.0.1:9503/api/getHistory/?data[peer]=@breakingmash&data[limit]=10`
2019-01-22 23:03:36 +01:00
* search: `http://127.0.0.1:9503/api/searchGlobal/?data[q]=Hello%20World&data[limit]=10`
2019-01-20 18:20:41 +01:00
* sendMessage: `http://127.0.0.1:9503/api/sendMessage/?data[peer]=@xtrime&data[message]=Hello!`
* copy message from one channel to other (not repost): `http://127.0.0.1:9503/api/copyMessages/?data[from_peer]=@xtrime&data[to_peer]=@xtrime&data[id][0]=1`
**Contacts**
* Telegram: [@xtrime](tg://resolve?domain=xtrime)
* Email: alexander(at)i-c-a.su