I am wondering how I can maintain the same session using a cookie jar in Go
I have done this in JS using this method:
const cookieJar = request.jar();
request({
headers: {
//headers here
},
url: url,
jar: cookieJar
method: 'GET'
I am wondering if there is an euqivalent of the above code for Go. Thanks!
You cat try something like this: