1. Go to this page and download the library: Download php-censor/flowdock-client library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
php-censor / flowdock-client example snippets
use FlowdockClient\Api\Push\ChatMessage;
use FlowdockClient\Api\Push\Push;
$message = ChatMessage::create()
->setContent('This message has been sent with php-censor/flowdock-client PHP library')
->setExternalUserName('php-censor)
->addTag('#hello-world');
$push = new Push('your_flow_api_token');
if (!$push->sendChatMessage($message, array('connect_timeout' => 1, 'timeout' => 1))) {
// handle errors...
$message->getResponseErrors();
}
use FlowdockClient\Api\Push\Push;
use FlowdockClient\Api\Push\TeamInboxMessage;
$message = TeamInboxMessage::create()
->setSource('source')
->setFromAddress('[email protected]')
->setSubject('subject')
->setContent('This message has been sent with php-censor/flowdock-client PHP library');
$push = new Push('your_flow_api_token');
if (!$push->sendTeamInboxMessage($message, array('connect_timeout' => 1, 'timeout' => 1))) {
// handle errors...
$message->getResponseErrors();
}