Questions tagged [hipchat]

HipChat is an instant-messaging service developed by Atlassian for group or one-to-one chat.

HipChat is an instant-messaging service developed by Atlassian for group or one-to-one chat. It integrates with other Atlassian services such as BitBucket, Confluence or JIRA, allowing notifications to be sent to a chat-room whenever code changes is committed, a wiki page is changed, or an issue is updated.

HipChat can either be installed locally as a client program, or used online via a web interface. The official website can be found at https://www.hipchat.com/

83 questions
1
vote
2 answers

How can I get my Hipchat Integration on Heroku to authenticate?

I followed the step-by-step guide here. I made a simple app that posts a message to the rooms the Integration is installed on per a regex (as described in the tutorial above). When I initially add the Integration to a hipchat room, it works fine. …
mattrowsboats
  • 582
  • 1
  • 6
  • 14
1
vote
1 answer

Embedding a live chat conversation as view only on an HTML page

I am looking to add a live chat channel as a view only on a static HTML page and can't seem to find a viable solution. As opposed to a realtime chat popup for support, I am looking to create a view only window into a live chat, using something like…
1
vote
1 answer

would hipchat bot "lita" and/or "hubot" work via port 443?

I am trying to connect hipchat bot lita and/or hubot. the XMPP libs have port hard coded to 5222 but I've changed it to 443 - I'm getting errors now. I can post the errors I get but before that I wanted to check if port 443 would work, as it is…
Mani
  • 11
  • 2
1
vote
1 answer

How to attach files to ruby hipchat messages?

I want to send text files through hipchat using the ruby hipchat-rb gem. There doesn't seem to be a way to do this described in the readme of this gem. Is it possible to do this?
Alex Cohen
  • 5,596
  • 16
  • 54
  • 104
1
vote
1 answer

Upload a text file on hipchat room using Curl

I am using bash script to run the Protractor automation script. I am getting results in the text file. Now I want to upload that file on the hipchat room. I am able to get the the content of the file but I want to upload actual text file on the…
sigma
  • 29
  • 2
  • 6
1
vote
1 answer

How to programmatically send messages in HipChat?

My task is only to write a bookmarklet for simplifying editing messages in HipChat in my team. I wrote the following: var id =…
zhibirc
  • 180
  • 14
1
vote
1 answer

How do i read the webhook data from Hipchat?

I've created a custom slash command to return data when a user writes in a specific room. This is only working if I hard code a value on my API endpoint. I'd really like to return "12345" from a message sent like "/notes 12345" I can't figure out…
Danny Dainton
  • 23,069
  • 6
  • 67
  • 80
1
vote
2 answers

How to convert this HipChat curl post to C#?

I'm trying to create a notification for HipChat and unfortunately their HipChat-CS (https://github.com/KyleGobel/Hipchat-CS) nuget package doesn't work. So, I wanted to investigate how I could manually send a notification but their example is using…
AJ Tatum
  • 653
  • 2
  • 15
  • 35
1
vote
1 answer

XMPP Server and Custom APIs

I have a scenario , where i need a Chat client for android and iOS and a XMPP server either setup privately or hosted. I need to call three APIs from mobile app (chat client) and from web based app. 1) Need API that can register a new user with…
Hammad Nasir
  • 119
  • 1
  • 11
1
vote
0 answers

Is it possible to retrieve message history from HipChat via XMPP?

I am building a chat client that talks to HipChat's XMPP API. I would like to retrieve 1:1 message history between the user and other's on his contact list. There is a XMPP protocol for doing this, XEP-0136, but it appears that HipChat does not…
Sam Lee
  • 9,913
  • 15
  • 48
  • 56
1
vote
1 answer

How to create a webhook for HipChat

I like to create a webhook for HipChat so that e.g. when typing /sayhi in the chat, a simple Hi is returned. I looked at their api https://www.hipchat.com/docs/apiv2/method/create_room_webhook where it is said to send a PUT…
Emerson Cod
  • 1,990
  • 3
  • 21
  • 39
1
vote
2 answers

Curl Not working to upload a file on server

I am trying to upload a file on sever using Api.And it is successful on localhost it is working fine i can easily upload the file on server. But when my code goes on server then it is not getting uploaded.I Give the read write permission to the…
Amitesh Kumar
  • 3,051
  • 1
  • 26
  • 42
1
vote
0 answers

How can I integrate Gerrit with HipChat

Do you have any tips or tutorials how to integrate Gerrit with HipChat to send specific information about code review process/build/tests?
Tomasz Muter
  • 141
  • 1
  • 2
  • 7
1
vote
1 answer

400 Error for HipChat PHP Curl Call

I'm trying to create a curl notification to a hipchat room, the Notification Token it generates is just for that room. curl -d '{"color":"green","message":"My first notification (yey)","notify":false,"message_format":"text"}' -H 'Content-Type:…
1
vote
0 answers

JIRA Hipchat integration plugin's REST call fails when called from some other plugin

The JIRA HipChat integration plugin has this REST call which I am unable to invoke successfully from my plugin: AJS.params.baseURL + "/rest/hipchat/compatibility/1.0/issuepanel/data/"+issueId+".json This call can give me the parts of the HipChat…