2017-08-26 10:53:28 +02:00
Slack API in Go [![GoDoc ](https://godoc.org/github.com/nlopes/slack?status.svg )](https://godoc.org/github.com/nlopes/slack) [![Build Status ](https://travis-ci.org/nlopes/slack.svg )](https://travis-ci.org/nlopes/slack)
===============
2018-03-23 11:16:06 +01:00
[![Join the chat at https://gitter.im/go-slack/Lobby ](https://badges.gitter.im/go-slack/Lobby.svg )](https://gitter.im/go-slack/Lobby?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=badge)
2017-08-26 10:53:28 +02:00
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.
2018-07-21 13:21:22 +02:00
2017-08-26 10:53:28 +02:00
2019-05-25 18:24:36 +02:00
## Changelog
2017-12-01 23:52:25 +01:00
2019-05-25 18:24:36 +02:00
[CHANGELOG.md ](https://github.com/nlopes/slack/blob/master/CHANGELOG.md ) is available. Please visit it for updates.
2017-08-26 10:53:28 +02:00
## Installing
### *go get*
2017-12-01 23:52:25 +01:00
$ go get -u github.com/nlopes/slack
2017-08-26 10:53:28 +02:00
## Example
### Getting all groups
```golang
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
2019-05-25 18:24:36 +02:00
// slack.New("YOUR_TOKEN_HERE", slack.OptionDebug(true))
2017-08-26 10:53:28 +02:00
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
```golang
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
2018-07-21 13:21:22 +02:00
## Minimal EventsAPI usage:
See https://github.com/nlopes/slack/blob/master/examples/eventsapi/events.go
2017-08-26 10:53:28 +02:00
## 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