Based on gorkalaucirica/HipchatAPIv2Client
PHP Library to process calls to Hipchat's v2 REST API
This package is work in progress and some functionality is not available yet.
The recommended way to install Hipchatv2ApiClient is through Composer. To install this library, run the command below and you will get the latest version:
composer require solutiondrive/hipchat-v2-api-client
All queries need the following two lines. The first one is to authenticate yourself and the second one creates a
client that is used by the API classes to perform requests to the API. That is enough to start, now check the API calls
section to see how to use the $client
to send requests to the API.
use SolutionDrive\HipchatAPIv2Client\Auth\OAuth2;
use SolutionDrive\HipchatAPIv2Client\Client;
$auth = new OAuth2('tokenYouCanGetInHipchatSite');
$client = new Client($auth);
After version 1.5.0 you can set the URL in the constructor to change the base url used by the client (by default uses
https://api.hipchat.com
$client = new Client($auth, null, 'https.//api.yourdomain.com');
All API call methods are located in the API folder. All of them have been documented and all have a link to Hipchat v2 API documentation. Some examples:
use SolutionDrive\HipchatAPIv2Client\API\UserAPI;
$userAPI = new UserAPI($client);
$user = $userAPI->getUser('@gorkalaucirica');
use SolutionDrive\HipchatAPIv2Client\API\RoomAPI;
$roomAPI = new RoomAPI($client);
$room = $roomAPI->getRooms(array('max-results' => 30));
The following list shows methods available and missing:
- Get addon installable data
- Create addon link
- Invoke addon link
- Delete addon link
- Addon ui update
- Room addon ui update
- User in room addon ui update
- User addon ui update
- Get capabilities
- Get emoticon
- Get all emoticons
- Generate token
- Get session
- Delete session
- Get all rooms
- Create room
- Get room
- Update room
- Delete room
- Get avatar
- Update avatar
- Delete avatar
- Get room message
- View room history
- View recent room history
- Invite user
- Add member
- Remove member
- Get all members
- Send message
- Send room notification
- Get all participants
- Reply to message
- Share file with room
- Get room statistics
- Set topic
- Get webhook
- Delete webhook
- Get all webhooks
- Create webhook
- Get all users
- Create user
- View user
- Update user
- Delete user
- Get privatechat message
- View recent privatechat history
- Private message user
- Get photo
- Upload photo
- Delete photo
- Get auto join rooms
- Share file with user
- Share link with user