例如,我需要来自页面https://aliexpress.ru/item/4001275226820.html的内容
在邮递员和浏览器中,我得到页面的 html 内容
但是当我尝试使用 GO 时,我无法获取内容
package main
import (
"fmt"
"io/ioutil"
"net/http"
)
func main() {
resp, err := http.Get("https://aliexpress.ru/item/4001275226820.html")
defer resp.Body.Close()
if err != nil {panic(err)}
html, err1 := ioutil.ReadAll(resp.Body)
if err1 != nil {panic(err1)}
fmt.Printf("%s\n", html)
}
但是让恐慌“在 10 次重定向后停止”我做错了什么?
catspeake
相关分类