This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
go-discogs/examples/discogs_example.go

24 lines
410 B
Go
Raw Normal View History

2016-03-04 16:08:02 +00:00
package main
import (
"fmt"
2017-02-13 16:40:27 +00:00
2016-03-04 16:48:26 +00:00
"github.com/irlndts/go-discogs"
2016-03-04 16:08:02 +00:00
)
func main() {
2017-02-13 16:40:27 +00:00
d := discogs.NewClient().UserAgent("TestDiscogsClient/0.0.1 +http://irlndts.moscow").Token("")
2016-03-10 14:25:55 +00:00
2017-02-13 16:40:27 +00:00
params := &discogs.SearchRequest{Release_title: "nevermind", Artist: "nirvana"}
search, _, err := d.Search.Search(params)
2016-03-10 14:25:55 +00:00
2016-03-09 15:14:42 +00:00
if err != nil {
fmt.Println(err)
2017-02-13 16:40:27 +00:00
return
}
for _, r := range search.Results {
fmt.Println(r)
2016-03-09 15:14:42 +00:00
}
2016-03-04 16:08:02 +00:00
}