[Go] Golang發送http GET請求

使用標準庫http來實現url

package tools

import (
    "io/ioutil"
    "net/http"
)

func Get(url string)string{
    res, err :=http.Get(url)
    if err != nil {
        return ""
    }
    robots, err := ioutil.ReadAll(res.Body)
    res.Body.Close()
    if err != nil {
        return ""
    }
    return string(robots)
}
相關文章
相關標籤/搜索