I cannot seem to get the configuration to work, even though I know the credentials are right and I have tested the python ring API without issues.
Unable to connect to Ring service: 401 Client Error: Unauthorized for url: https://api.ring.com/clients_api/session
I have tried everything from single quoting, double quoting, and no quoting of the username and password. I cannot seem to make things work.
ring:
username: "[email protected]"
password: "randompasswordwithoutsymbols"
Below shows that the credentials work in python.
>>> from ring_doorbell import Ring
>>> myring = Ring('[email protected]', 'randompasswordwithoutsymbols', debug=True)
>>> myring.is_connected
True
Any idea on what I’m doing wrong?