i have written following code enter website through python programming. reason facing error: **"your session not established. big-ip can not find session information in request. can happen because browser restarted after add-on installed. if occurred, click link below continue. can happen because cookies disabled in browser. if so, enable cookies in browser , start new session."** my code(website, username , password hidden): import sys import re import requests import csv bs4 import beautifulsoup pprint import pprint login_url = "https://example.ex.com" requests.session() session: proxy_url = "http://{0}:{1}@proxy.blah.blah.com:[portnumber]".format('proxy_uid', 'proxy_password') session.proxies = {'http': proxy_url, 'https': proxy_url} data = { 'username': '_uname_', 'password': '_password_', 'vhost': 'standard' } r = s...
Comments
Post a Comment