..
2021-02-01 21:29:04 +01:00
2021-05-05 22:03:28 +02:00
2021-05-05 22:03:28 +02:00
2021-10-17 00:47:22 +02:00
2020-03-28 23:50:47 +01:00
2021-10-17 00:47:22 +02:00
2020-09-04 23:29:13 +02:00
2021-03-20 22:40:23 +01:00
2021-03-20 22:40:23 +01:00
2021-12-12 00:05:15 +01:00
2020-10-11 23:07:00 +02:00
2021-05-05 22:03:28 +02:00
2021-12-12 00:05:15 +01:00
2021-07-31 18:27:55 +02:00
2021-07-31 18:27:55 +02:00
2020-10-19 23:40:00 +02:00
2020-09-04 23:29:13 +02:00
2021-05-30 00:25:30 +02:00
2021-05-05 22:03:28 +02:00
2021-05-05 22:03:28 +02:00
2021-05-05 22:03:28 +02:00
2021-10-17 00:47:22 +02:00
2020-10-11 23:07:00 +02:00
2020-03-28 23:50:47 +01:00
2021-12-12 00:05:15 +01:00
2021-03-20 22:40:23 +01:00
2021-05-05 22:03:28 +02:00
2020-10-19 23:40:00 +02:00
2021-02-01 21:29:04 +01:00
2021-12-12 00:05:15 +01:00
2021-05-30 00:25:30 +02:00
2021-12-12 00:05:15 +01:00
2021-03-20 22:40:23 +01:00

Slack API in Go [![Go Reference](https://pkg.go.dev/badge/github.com/slack-go/slack.svg)](https://pkg.go.dev/github.com/slack-go/slack)
===============

This is the original Slack library for Go created by Norberto Lopes, transferred to a GitHub organization.

You can also chat with us on the #slack-go, #slack-go-ja Slack channel on the Gophers Slack.

![logo](logo.png "icon")

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.

## Project Status
There is currently no major version released.
Therefore, minor version releases may include backward incompatible changes.

See [CHANGELOG.md](https://github.com/slack-go/slack/blob/master/CHANGELOG.md) or [Releases](https://github.com/slack-go/slack/releases) for more information about the changes.

## Installing

### *go get*

    $ go get -u github.com/slack-go/slack

## Example

### Getting all groups

```golang
import (
	"fmt"

	"github.com/slack-go/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
	// slack.New("YOUR_TOKEN_HERE", slack.OptionDebug(true))
	groups, err := api.GetUserGroups(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/slack-go/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 Socket Mode usage:

See https://github.com/slack-go/slack/blob/master/examples/socketmode/socketmode.go


## Minimal RTM usage:

As mentioned in https://api.slack.com/rtm - for most applications, Socket Mode is a better way to communicate with Slack.

See https://github.com/slack-go/slack/blob/master/examples/websocket/websocket.go


## Minimal EventsAPI usage:

See https://github.com/slack-go/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.

Before making any Pull Request please run the following:

```
make pr-prep
```

This will check/update code formatting, linting and then run all tests

## License

BSD 2 Clause license