Wraps the RocketChat REST API.
use com\rocketchat\RocketChatApi;
use util\Secret;
$username= '...';
$secret= new Secret('...');
$api= new RocketChatApi('https://chat.example.com/');
$api->login($username, $secret);
$channel= $api->channels->named('test');
foreach ($api->channels->historyOf($channel) as $message) {
// ...
}