def session(self, email, password):
session = requests.Session()
session.headers.update({
'content-type': 'application/x-www-form-urlencoded'
})
response = session.post(
ZoomClient.SIGNIN_URL, data={'email': email, 'password': password}
)
return session, response
评论列表
文章目录