brecky / hipchat.net-1

HipChat API v2 portable client library for .NET

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HipChat.NET

HipChat API v2 client library for .NET

Join the chat at https://gitter.im/sirkirby/hipchat.net

master

Build Status

develop

Build Status

Supported Platforms

  • .NET 4.5+ (Desktop / Server)
  • Windows 8.1 Universal apps (Desktop / Phone / Tablet)

Nuget

PM> install-package HipChat.Net.Portable

Examples

// get hipchat client instance
var hipChat = new HipChatClient(new ApiConnection(new Credentials("OAuthToken")));
// get all rooms
var rooms = await hipChat.Rooms.GetAllAsync();
// get room members
var members = await hipChat.Rooms.GetMembersAsync("roomNameOrId")
// get recent room message history
await hipChat.Rooms.GetHistoryAsync("roomNameOrId")
// send room notification
await hipChat.Rooms.SendNotificationAsync("roomNameOrId", "My <strong>important</strong> message!");

For more examples, see the HipChatWeb project in the repository or visit the hosted version here http://hipchatweb.azurewebsites.net/

Build

Using msbuild (v12+) against HipChat.Net.csproj.

Requirements

  • Visual Studio 2012/2013
  • Windows 8.1 for WinRT/Universal projects.

Copyright & License

Copyright 2014 Chris Kirby MIT License

About

HipChat API v2 portable client library for .NET

License:MIT License


Languages

Language:JavaScript 73.3%Language:C# 26.4%Language:CSS 0.3%Language:ASP 0.0%