How do I maintain logged in session with golang for scraping?

3.9k Views Asked by At

I'm trying to scrape data from a website that requires user/password login using go. With python this is simple using requests lib:

import requests

session = requests.Session()
session.post("https://site.com/login", data={ 'username': 'user', 'password': '123456' })

# access URL that requires authentication
resp = session.get('https://site.com/restricted/url')

What is a simple way to accomplish the same thing with golang? thanks.

2

There are 2 best solutions below

0
On

Create a custom HTTP Client instance and attach a cookie jar to it.

0
On

I wrote a scraping framework called Colly which handles HTTP sessions out of the box. You can achieve the mentioned functionality similarly:

c := colly.NewCollector()
c.Post("https://example.com/login", map[string]string{"user": "x", "pass": "y"})

The code can be found on GitHub. A complete example of handling authentications is also available.