doujiang5211 2016-08-14 06:09
浏览 85
已采纳

使用cookie卷曲到Golang HTTP请求

I'm trying to get info from an old site that utilizes netscape HTTP cookie files to login. Here's my curl requests:

// Do login request and get cookie
curl -c cookies -X POST -i -v https://foobar.com/login

// Use generated cookie file to get more data about the user
curl -b cookies -i -v https://foobar.com/data

In PHP, you could do something like:

// Do login request and get cookie
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://foobar/login');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_COOKIESESSION, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, './cookies');
curl_setopt($ch, CURLOPT_COOKIEFILE, './cookies');  
$user = curl_exec($ch);

// Use generated cookie file to get data about the user 
curl_setopt($ch, CURLOPT_URL, 'https://foobar/login');
curl_setopt($ch, CURLOPT_COOKIESESSION, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, './cookies');
curl_setopt($ch, CURLOPT_COOKIEFILE, './cookies');  
$data = curl_exec($ch);

Is there a way to do this using the std http package in Go?

  • 写回答

1条回答 默认 最新

  • dsij89625 2016-08-14 07:59
    关注

    To save a cookie:

    // do whatever is needed to login and get the cookie
    response, err := http.PostForm("http://localhost:8080/login", url.Values{"username": {"foo"}, "password": {"bar"}})
    if err != nil {
        log.Fatal(err)
    }
    
    var savedCookie *http.Cookie
    
    for _, cookie := range response.Cookies() {
        if cookie.Name == "secret" {
            savedCookie = cookie
        }
    }
    

    Once you have the cookie you can build another request and add the cookie(s):

    client := http.Client{}
    request, err := http.NewRequest("GET", "http://localhost:8080/protected", nil)
    if err != nil {
        log.Fatal(err)
    }
    
    request.AddCookie(savedCookie)
    response, err := client.Do(request)
    if err != nil {
        log.Fatal(err)
    }
    

    If you have multiple Cookies you can use a CookieJar and set them directly in the Client:

    client := &http.Client{
        Jar: jar,
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)