hipchat alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view hipchat alternatives based on common mentions on social networks and blogs.
-
go-openai
OpenAI ChatGPT, GPT-3, GPT-4, DALL·E, Whisper API wrapper for Go -
goamz
Popular fork of goamz which adds some missing API calls to certain packages. -
webhooks
:fishing_pole_and_fish: Webhook receiver for GitHub, Bitbucket, GitLab, Gogs -
githubql
Package githubv4 is a client library for accessing GitHub GraphQL API v4 (https://docs.github.com/en/graphql). -
twitter-scraper
Scrape the Twitter frontend API without authentication with Golang. -
lark
Feishu(飞书)/Lark Open API Go SDK, Support ALL Open API and Event Callback. -
openaigo
OpenAI GPT3/3.5 and GPT4 ChatGPT API Client Library for Go, simple, less dependencies, and well-tested -
hipchat (xmpp)
A golang package to communicate with HipChat over XMPP -
gostorm
GoStorm is a Go library that implements the communications protocol required to write Storm spouts and Bolts in Go that communicate with the Storm shells. -
clarifai
DEPRECATED: please use https://github.com/Clarifai/clarifai-go-grpc -
go-lark
An easy-to-use SDK for Feishu and Lark Open Platform (Instant Messaging API only) -
go-trending
Go library for accessing trending repositories and developers at Github. -
simples3
Simple no frills AWS S3 Golang Library using REST with V4 Signing (without AWS Go SDK) -
go-tgbot
Golang telegram bot API wrapper, session-based router and middleware -
cachet
Go(lang) client library for Cachet (open source status page system). -
google-play-scraper
Golang scraper to get data from Google Play Store -
GoMusicBrainz
a Go (Golang) MusicBrainz WS2 client library - work in progress
Updating dependencies is time-consuming.
Do you think we are missing an alternative of hipchat or a related project?
README
Hipchat
This project implements a Go client library for the Hipchat API (API version 2 is not supported).
Pull requests are welcome as the API is limited to only a few calls right now.
API documentation can be found on godoc.org.
Star this or get at me on the Twitters if you end up using this since this is pretty early stage and I may make breaking changes to the API. – @andybons
Installing
Run
go get github.com/andybons/hipchat
Example usage:
package main
import (
"github.com/andybons/hipchat"
"log"
)
func main() {
c := hipchat.NewClient("<PUT YOUR AUTH TOKEN HERE>")
req := hipchat.MessageRequest{
RoomId: "Rat Man's Den",
From: "GLaDOS",
Message: "Bad news: Combustible lemons failed.",
Color: hipchat.ColorPurple,
MessageFormat: hipchat.FormatText,
Notify: true,
}
if err := c.PostMessage(req); err != nil {
log.Printf("Expected no error, but got %q", err)
}
}
Setting a custom HipChat Server:
c := hipchat.NewClient("<AUTH TOKEN>")
c.BaseURL = "https://your.host.name/v1"
...
Use customized proxy settings In case you need to use transport other than http.DefaultTransport
:
c := hipchat.NewClient("<AUTH TOKEN>")
proxyURL, err := url.Parse("<PROXY_URL:PROXY_PORT>")
if err != nil {
log.Fatalf("Expected no error, but got %q", err)
}
c.Transport = &http.Transport{Proxy: http.ProxyURL(proxyURL)}
Contributors
- Akshay Shah (@akshayjshah)
- Michael Biven (@michaelbiven)
- Tarrant Rollins (@tarrant)
- Edward Muller (@freeformz)
- Matt Blair (@mblair)
- Gordon Goetz (@gtosh4)
- Paras Patel (@patelparas)