Golang发送http GET请求的示例代码

时间:2022-06-07 04:40:18

使用标准库http来实现

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)
}

以上就是Golang发送http GET请求的示例代码的详细内容,更多关于Golang发送http GET请求的资料请关注服务器之家其它相关文章!

原文链接:https://www.cnblogs.com/taoshihan/p/13674887.html