tzbailey
tzbailey
Having tried this with a Ring Doorbell 2, it seems to me that the POST query method doesn't update the snapshot. It does get the timestamp of the latest snapshot...
Agreed on the snapshot, I noticed this and commented on it in another thread. Would happily contribute myself if I had ANY idea what the API call would need to...
Update on this. I've managed to get it to work by disabling the snapshot feature in the app (Code below). A word of warning though, if you're planning to couple...
The code below worked for me ```python def download_ring_vid: auth = Auth() auth.fetch_token(username, password) ring = Ring(auth) doorbell = ring.doorbells[0] json = live_streaming_json_fixed(doorbell) try: new_id = json['id'] except: url =...