gorkalaucirica/hipchat-v2-api-client 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

gorkalaucirica/hipchat-v2-api-client

最新稳定版本:v1.5.1

Composer 安装命令:

composer require gorkalaucirica/hipchat-v2-api-client

包简介

Hipchat v2 API client

README 文档

README

This library is unmantained. Check this fork by solutionDrive

PHP Library to process calls to Hipchat's v2 REST API

Latest Stable Version Total Downloads Latest Unstable Version License Build Status Scrutinizer Code Quality SensioLabsInsight

This package is work in progress and some functionality is not available yet.

Installation

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 gorkalaucirica/hipchat-v2-api-client

Usage

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 GorkaLaucirica\HipchatAPIv2Client\Auth\OAuth2;
use GorkaLaucirica\HipchatAPIv2Client\Client;

$auth = new OAuth2('tokenYouCanGetInHipchatSite');
$client = new Client($auth);

Client for private instances

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');

API calls

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:

Getting user by mention name:

use GorkaLaucirica\HipchatAPIv2Client\API\UserAPI;

$userAPI = new UserAPI($client);
$user = $userAPI->getUser('@gorkalaucirica');

Getting all rooms

use GorkaLaucirica\HipchatAPIv2Client\API\RoomAPI;

$roomAPI = new RoomAPI($client);
$room = $roomAPI->getRooms(array('max-results' => 30));

Current status

The following list shows methods available and missing:

Add ons

  • Get addon installable data
  • Create addon link
  • Invoke addon link
  • Delete addon link

Capabilities

  • Get capabilities

Emoticons

  • Get emoticon
  • Get all emoticons

OAuth Sessions

  • Generate token
  • Get session
  • Delete session

Rooms

  • 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

Users

  • 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

统计信息

  • 总下载量: 219.29k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 82
  • 点击次数: 1
  • 依赖项目数: 7
  • 推荐数: 1

GitHub 信息

  • Stars: 81
  • Watchers: 8
  • Forks: 41
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-07-09