Hello,
I have a Zyte accoubnt and already did the API things.
proxy={
"http": "http://<API_KEY>:@proxy.crawlera.com:8011/",
"https": "http://<API_KEY>:@proxy.crawlera.com:8011/"
}
There is longer version but that is quite enough for now.
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:46.0) Gecko/20100101 Firefox/46.0'}
s = requests.Session()
s.proxies.update(proxy)
#s.verify = "/home/TromotiXC/tromotixcapp/static/zyte-proxy-ca.crt" ??
s.headers.update(headers)
s.post(login_url, data = data, verify="/home/TromotiXC/tromotixcapp/static/zyte-proxy-ca.crt")
With requests.get it works. But I have to get datas which needed to be logged in so I have to make a session round and the further requests with s.get. But I don't see the datas what I should see with logged in.
Other the third s.get I try to print .text but that is empty.
Thank you in advance!