5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 14:52:30 +00:00
matterbridge/vendor/github.com/peterhellberg/giphy/search.go

25 lines
453 B
Go
Raw Normal View History

2016-04-10 21:39:38 +00:00
package giphy
import (
"fmt"
"strings"
)
// Search returns a search response from the Giphy API
func (c *Client) Search(args []string) (Search, error) {
argsStr := strings.Join(args, " ")
path := fmt.Sprintf("/gifs/search?limit=%v&q=%s", c.Limit, argsStr)
req, err := c.NewRequest(path)
if err != nil {
return Search{}, err
}
var search Search
if _, err = c.Do(req, &search); err != nil {
return Search{}, err
}
return search, nil
}