python-dlipower icon indicating copy to clipboard operation
python-dlipower copied to clipboard

Returning response code [403] when connecting to ProSwitch using non default user id and password

Open emmathew opened this issue 5 years ago • 0 comments

I was able to fix the issue by making slight modification in the file dlipower.py. I modified the line data = {'Username': 'admin', 'Password': m.hexdigest()} to data = {'Username': self.userid, 'Password': m.hexdigest()}. After making this change I was able to connect to the device and operate it

emmathew avatar Oct 03 '19 19:10 emmathew