Hipchat-CS icon indicating copy to clipboard operation
Hipchat-CS copied to clipboard

An easy to use C# wrapper of the V2 Hipchat API

Results 13 Hipchat-CS issues
Sort by recently updated
recently updated
newest added

Any chance of making this net core compatible?

I get this error when simply performing: `var client = new HipchatClient("xxxxxx");` ....where _xxxxxx_ is my key

Hey, I've migrated the projects to .NET 2.0 which was released recently. No problem found so far, so please take a look.

The license is restrictive, and requires purchase if used for commercial purposes. This makes it difficult for a business to use.

Trying to do something really simple and get the following exception message: var client = new HipchatClient("authtoken"); client.SendNotification("Remote Squadron Room", string.Format("Sending message to {0}", mailerMessage.ToAddresses)); `{ "Message": "An error has...

Hi, I am using a test project 4.6.1 , and calling the wrapper project around (both ServiceStack 4.5.4 ) Tried various versions of ServiceStack but keep getting this error when...

Added the ability to connect to your own server, without the use of application settings. Example: `var client = new HipchatClient(this.AuthToken, this.ServerName);` `client.SendNotification(RoomName, message);`

Hello, I have an issue, when I use this line below: _"HipchatClient client = new HipchatClient();"_ This is the exception: _ > An unhandled exception of type 'System.MissingMethodException' occurred in...

Suggestion: working together with https://github.com/hugorodgerbrown/HipChat.net Question: Can I use Hipchat and Powershell like Slash ? https://gist.github.com/magnetikonline/11007e42d86f490b84f8 https://github.com/jgigler/Powershell.Slack/blob/master/Send-SlackMessage.ps1 http://geeks.ms/enterprise/2016/02/15/monitorizar-eventos-con-powershell/ function Send-SlackMessage([string]$message, [string]$userName, [string]$channel="#tests"){ $postSlackMessage = @{token="EL_TOKEN_SLACK_VIENE_AQUI";channel=$channel;text=$message;username=$userName;icon_url="ICONO.png"} $body = Invoke-RestMethod -Uri https://slack.com/api/chat.postMessage...