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.
Create a custom HTTP Client instance and attach a cookie jar to it.