From 17fc8f36c7a6d58d4c971f83a49b4e7ef6cfeea6 Mon Sep 17 00:00:00 2001 From: Steven B <51370195+sdb9696@users.noreply.github.com> Date: Thu, 26 Sep 2024 10:22:06 +0100 Subject: [PATCH] Send client_id with oauth request --- ring_doorbell/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ring_doorbell/auth.py b/ring_doorbell/auth.py index 0b5a44d..ac6790d 100644 --- a/ring_doorbell/auth.py +++ b/ring_doorbell/auth.py @@ -92,7 +92,7 @@ async def async_fetch_token( try: body = self._oauth_client.prepare_request_body( - username, password, scope=OAuth.SCOPE + username, password, scope=OAuth.SCOPE, include_client_id=True ) data = dict(urldecode(body)) resp = await self._session.request(