For instance `Request::sendMessage($data)` uses:
$data = [
'chat_id' => $chat_id,
'text' => 'Your utf8 text 😜 ...'
];
Note that messages longer than 4096 characters are split up into multiple messages.
For instance Request::sendPhoto($data)
uses:
$data = [
'chat_id' => $chat_id,
'photo' => Request::encodeFile('/path/to/pic.jpg'),
];
Alternatively 'photo' => 'https://example.com/path/to/pic.jpg'
for sending online images.