You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
439 B
23 lines
439 B
package util
|
|
|
|
import (
|
|
"code.google.com/p/weed-fs/go/glog"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
)
|
|
|
|
func Post(url string, values url.Values) ([]byte, error) {
|
|
r, err := http.PostForm(url, values)
|
|
if err != nil {
|
|
glog.V(0).Infoln("post to", url, err)
|
|
return nil, err
|
|
}
|
|
defer r.Body.Close()
|
|
b, err := ioutil.ReadAll(r.Body)
|
|
if err != nil {
|
|
glog.V(0).Infoln("read post result from", url, err)
|
|
return nil, err
|
|
}
|
|
return b, nil
|
|
}
|