go-curl
go-curl copied to clipboard
How store all Cookies in a file?
Hello, How store all Cookies in a file? like php :
<?php
curl_setopt ($ch, CURLOPT_COOKIEFILE,"cookie.txt");
?>
How can do this Using Go? @andelf
This is how I do it:
easy.Setopt(curl.OPT_COOKIEJAR, fmt.Sprintf("tmp/cookiejar_%s.txt", task.CookieJarPath)) easy.Setopt(curl.OPT_COOKIEFILE, fmt.Sprintf("tmp/cookiejar_%s.txt", task.CookieJarPath))