You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which version of ffmpeg are you using (ffmpeg -version)?
'ffmpeg' is not recognized as an internal or external command,
operable program or batch file.
Which Arlo hardware do you have (camera types - [Arlo, Pro, Q, etc.], basestation model, etc.)?
Arlo Essential Indoor Security Camera
What did you do?
If possible, provide the steps you took to reproduce the issue.
A complete runnable program is good. (don't include your user/password or any sensitive info)
from arlo import Arlo
USERNAME = 'my_username'
PASSWORD = 'my_password'
try:
arlo = Arlo(USERNAME, PASSWORD)
#I get the error when I add the following line:
cameras = arlo.GetDevices('camera')
except Exception as e:
print(e)
What did you expect to see?
I expected for the program to compile without error.
What did you see instead?
401 Client Error: for url: https://my.arlo.com/hmsweb/users/devices
{"success":false,"data":{"error":"2401","message":"Access token is empty or unauthorized request","reason":"Empty token"}}
Does this issue reproduce with the latest release?
Yes
The text was updated successfully, but these errors were encountered:
I also checked in settings that I'm not using 2FA. I don't know how to debug it. Are there any commands I could use to check whether I'm logged in? (I don't get the error onyl with this part of the code: arlo = Arlo(USERNAME, PASSWORD)).
Should I use the gmail mfa method to get the access token?
Arlo changed from using EventStream to mqtt for their event bus, so this library is broken right now. I haven't had a chance to update it, but am hoping to get some time this weekend.
Please answer these questions before submitting your issue. Thanks!
What version of Python are you using (
python -V
)?Python 3.9.2
What operating system and processor architecture are you using (
python -c 'import platform; print(platform.uname());'
)?uname: uname_result(system='Windows', node='DESKTOP-25M4S9P', release='10', version='10.0.19041', machine='AMD64')
Which Python packages do you have installed (run the
pip freeze
orpip3 freeze
command and paste output)?Which version of ffmpeg are you using (
ffmpeg -version
)?Which Arlo hardware do you have (camera types - [Arlo, Pro, Q, etc.], basestation model, etc.)?
Arlo Essential Indoor Security Camera
What did you do?
If possible, provide the steps you took to reproduce the issue.
A complete runnable program is good. (don't include your user/password or any sensitive info)
What did you expect to see?
What did you see instead?
Does this issue reproduce with the latest release?
Yes
The text was updated successfully, but these errors were encountered: