Skip to content

Latest commit

History

686 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Slack API in Go GoDocBuild Status

Join the chat at https://gitter.im/go-slack/Lobby

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"
)
funcmain() {
api:=slack.New("YOUR_TOKEN_HERE")
// If you set debugging, it will log all requests to the console// Useful when encountering issues// slack.New("YOUR_TOKEN_HERE", slack.OptionDebug(true))groups, err:=api.GetGroups(false)
iferr!=nil {
fmt.Printf("%s\n", err)
return
}
for_, group:=rangegroups {
fmt.Printf("ID: %s, Name: %s\n", group.ID, group.Name)
}
}

Getting User Information

import (
"fmt""github.com/nlopes/slack"
)
funcmain() {
api:=slack.New("YOUR_TOKEN_HERE")
user, err:=api.GetUserInfo("U023BECGF")
iferr!=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

About

Slack API in Go

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages