我正在尝试从需要使用 go 的用户/密码登录的网站抓取数据。使用 python,使用requestslib很简单:
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')
用 golang 完成同样事情的简单方法是什么?谢谢。
人到中年有点甜
相关分类