Codebase list golang-github-nlopes-slack / run/49473463-c5d5-40ba-a0bc-8871ad989fb7/main emoji.go
run/49473463-c5d5-40ba-a0bc-8871ad989fb7/main

Tree @run/49473463-c5d5-40ba-a0bc-8871ad989fb7/main (Download .tar.gz)

emoji.go @run/49473463-c5d5-40ba-a0bc-8871ad989fb7/mainraw · history · blame

package slack

import (
	"errors"
	"net/url"
)

type emojiResponseFull struct {
	Emoji map[string]string `json:"emoji"`
	SlackResponse
}

// GetEmoji retrieves all the emojis
func (api *Client) GetEmoji() (map[string]string, error) {
	values := url.Values{
		"token": {api.config.token},
	}
	response := &emojiResponseFull{}
	err := post("emoji.list", values, response, api.debug)
	if err != nil {
		return nil, err
	}
	if !response.Ok {
		return nil, errors.New(response.Error)
	}
	return response.Emoji, nil
}