I am trying to login to a website by using Python script. Please help me
url = 'http://12.345.67.891:8000/login'
values = {'username': 'abcdefg',
'password': 'apple'}
r = requests.post(url, data=values)
print r.content
Getting below error when executed the code
[{"fieldNames":["User"],"classification":"RequiredError","message":"Required"}]