-
-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Another way to check firmware instead of using the command CheckFirmware. #30
Comments
@mnpg that is a greath find! I am certainly going to implement this as soon as I have some time! |
@starkillerOG, no problem. I'm pleased to help you and the HA Reolinkers community. Thanks to you 👍 |
I just added the check of the capabilities in commit: 21adca6 |
Hi @starkillerOG,
i found another way to check the firmware update through the official Reolink Download Center if the cameras do not have the CheckFirmware command.
It's a wordpress server and you can have json results for having these informations .
Here the method :
First step : Retrieve the GetDevInfo of the camera specially the fields : Model and Hardware No
Second step : curl this url below to have all the firmware and product id listed in their database :
https://reolink.com/wp-json/reo-v2/download/hardware-version/selection-list
Filter in the return hardware-version json with the GetDevInfo you got (the model and Hardware no). You will have in return a id (#id_hardware_n°#) and an dlProduct>id (#id_model#) for this model and hardware
After that third step : curl this url below with these ids you got :
https://reolink.com/wp-json/reo-v2/download/firmware/?dlProductId=#id_model#&hardwareVersion=#id_hardware_n°#&lang=en
In the last json page, you will find the date that the firmware has been release (EPOCH date) :
Regards
The text was updated successfully, but these errors were encountered: