Hello all, i come from ruby background and i just started coding golang. I would like to know which http client in golang is similar to something like rest-client in ruby.
I am looking at https://github.com/parnurzeal/gorequest.
Some suggestions will help greatly, cheers!
评论:
icholy:
ronny10:Use the standard library: http://golang.org/pkg/net/http/
muffinz0:thanks, i will go read up on the documentation
Can't recommend the standard library enough. If you want something a little extra, use Gorilla Mux. That's pretty much the Go communities go-to.
