mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
.. | ||
slackutilsx | ||
.gitignore | ||
.gometalinter.json | ||
.travis.yml | ||
admin.go | ||
attachments.go | ||
auth.go | ||
backoff.go | ||
bots.go | ||
CHANGELOG.md | ||
channels.go | ||
chat.go | ||
comment.go | ||
conversation.go | ||
dialog_select.go | ||
dialog_text.go | ||
dialog.go | ||
dnd.go | ||
emoji.go | ||
files.go | ||
Gopkg.lock | ||
Gopkg.toml | ||
groups.go | ||
history.go | ||
im.go | ||
info.go | ||
interactions.go | ||
item.go | ||
LICENSE | ||
logger.go | ||
messageID.go | ||
messages.go | ||
misc.go | ||
oauth.go | ||
pagination.go | ||
pins.go | ||
reactions.go | ||
README.md | ||
reminders.go | ||
rtm.go | ||
search.go | ||
security.go | ||
slack.go | ||
slash.go | ||
stars.go | ||
team.go | ||
TODO.txt | ||
usergroups.go | ||
users.go | ||
webhooks.go | ||
websocket_channels.go | ||
websocket_dm.go | ||
websocket_dnd.go | ||
websocket_files.go | ||
websocket_groups.go | ||
websocket_internals.go | ||
websocket_managed_conn.go | ||
websocket_misc.go | ||
websocket_pins.go | ||
websocket_reactions.go | ||
websocket_stars.go | ||
websocket_subteam.go | ||
websocket_teams.go | ||
websocket.go |
Slack API in Go
This library supports most if not all of the api.slack.com
REST
calls, as well as the Real-Time Messaging protocol over websocket, in
a fully managed way.
Changelog
CHANGELOG.md is available. Please visit it for updates.
Installing
go get
$ go get -u github.com/nlopes/slack
Example
Getting all groups
import (
"fmt"
"github.com/nlopes/slack"
)
func main() {
api := slack.New("YOUR_TOKEN_HERE")
// If you set debugging, it will log all requests to the console
// Useful when encountering issues
// api.SetDebug(true)
groups, err := api.GetGroups(false)
if err != nil {
fmt.Printf("%s\n", err)
return
}
for _, group := range groups {
fmt.Printf("ID: %s, Name: %s\n", group.ID, group.Name)
}
}
Getting User Information
import (
"fmt"
"github.com/nlopes/slack"
)
func main() {
api := slack.New("YOUR_TOKEN_HERE")
user, err := api.GetUserInfo("U023BECGF")
if err != nil {
fmt.Printf("%s\n", err)
return
}
fmt.Printf("ID: %s, Fullname: %s, Email: %s\n", user.ID, user.Profile.RealName, user.Profile.Email)
}
Minimal RTM usage:
See https://github.com/nlopes/slack/blob/master/examples/websocket/websocket.go
Minimal EventsAPI usage:
See https://github.com/nlopes/slack/blob/master/examples/eventsapi/events.go
Contributing
You are more than welcome to contribute to this project. Fork and make a Pull Request, or create an Issue if you see any problem.
License
BSD 2 Clause license