User management on Reolink cams
I set up frigate with a couple Reolink cams. When I went to create a separate user account for frigate, I found that the cameras wouldn't let me create new user accounts. Instead they wanted me to run through a sharing workflow using a QR code and some kind of song and dance.
It turns out recent versions of the Reolink firmware and apps have been removing the user management functionality, which seems like an odd thing to do.
However, I was able to work around this by using the Reolink API on the cameras. Something like this did the trick for me:
> virtualenv .
> source bin/activate
> pip install reolinkapi
> python3
>>> from reolinkapi import Camera
>>> c = Camera('<ip address>', password='<admin_password')
>>> c.login()
>>> c.add_user('<frigate_username>', '<frigate_password>')