go-flickr
go-flickr copied to clipboard
Installation failed
mibair:stdinurls mibori$ go get github.com/mncaudill/go-flickr
# github.com/mncaudill/go-flickr
../../github.com/mncaudill/go-flickr/flickr.go:216: calling method Do with receiver client (type **http.Client) requires explicit dereference
I was able to get it to build by removing the & operator from line 215 so it reads:
client := http.DefaultClient
resp, err := client.Do(postRequest)