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,
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 易语言把MYSQL数据库中的数据添加至组合框
  • ¥20 求数据集和代码#有偿答复
  • ¥15 关于下拉菜单选项关联的问题
  • ¥20 java-OJ-健康体检
  • ¥15 rs485的上拉下拉,不会对a-b<-200mv有影响吗,就是接受时,对判断逻辑0有影响吗
  • ¥15 使用phpstudy在云服务器上搭建个人网站
  • ¥15 应该如何判断含间隙的曲柄摇杆机构,轴与轴承是否发生了碰撞?
  • ¥15 vue3+express部署到nginx
  • ¥20 搭建pt1000三线制高精度测温电路
  • ¥15 使用Jdk8自带的算法,和Jdk11自带的加密结果会一样吗,不一样的话有什么解决方案,Jdk不能升级的情况