Skip to content

l-qing/slack

This branch is 1113 commits behind slack-go/slack:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2891986 · Jun 23, 2019
Apr 13, 2019
Jun 23, 2019
Apr 4, 2019
Jun 5, 2019
May 8, 2019
Apr 19, 2019
Apr 5, 2019
Jul 14, 2018
Jan 7, 2019
Apr 5, 2019
Jan 20, 2019
Jan 24, 2015
Mar 19, 2019
Aug 16, 2015
Apr 4, 2019
May 8, 2019
Apr 4, 2019
Apr 4, 2019
Jun 2, 2019
May 8, 2019
May 8, 2019
May 8, 2019
May 8, 2019
Jun 2, 2019
May 8, 2019
Feb 27, 2019
Jun 14, 2019
May 8, 2019
May 8, 2019
Feb 27, 2019
Jun 2, 2019
May 8, 2019
Jun 23, 2019
Jun 23, 2019
May 8, 2019
Apr 4, 2019
Apr 4, 2019
Apr 13, 2019
May 8, 2019
Apr 4, 2019
Jul 22, 2015
Apr 13, 2019
Apr 16, 2019
May 8, 2019
Apr 13, 2019
Apr 13, 2019
Apr 4, 2019
Sep 5, 2018
Sep 5, 2018
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Jun 2, 2019
Apr 4, 2019
Apr 5, 2019
Apr 5, 2019
Apr 13, 2019
Mar 5, 2016
Apr 13, 2019
Jun 29, 2018
Jun 2, 2019
Apr 13, 2019
Jul 26, 2015
Jul 22, 2015
Oct 6, 2018
Oct 6, 2018
Aug 16, 2015
May 8, 2019
Aug 5, 2018
Apr 19, 2019
Apr 19, 2019
Apr 4, 2019
Jan 27, 2015
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Apr 2, 2019
Nov 4, 2018
Apr 13, 2019
Jan 24, 2015
Feb 21, 2018
Feb 21, 2018
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Apr 6, 2019
Apr 4, 2019
Apr 21, 2019
Apr 21, 2019
Jun 22, 2019
Jan 7, 2019
Apr 4, 2019
Jan 30, 2016
Aug 3, 2015
Mar 5, 2016
Jan 30, 2016
Aug 16, 2015
Apr 4, 2019
Apr 4, 2019
Apr 4, 2019
Nov 11, 2018
Jan 30, 2016
Mar 5, 2016
Jan 30, 2016
Sep 4, 2018
Mar 5, 2016

Repository files navigation

Slack API in Go GoDoc Build 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"
)

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.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

About

Slack API in Go

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.9%
  • Makefile 0.1%