From 66b1263c99ebd3f4106e06ecf074836bba27f4e4 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Tue, 14 Oct 2025 22:31:41 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(rule=5Fprocessor):=20update?= =?UTF-8?q?=20Gmail=20API=20scope?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - modify scope to allow broader access to Gmail --- src/rule_processor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rule_processor.rs b/src/rule_processor.rs index 83aa746..5d96866 100644 --- a/src/rule_processor.rs +++ b/src/rule_processor.rs @@ -185,7 +185,7 @@ impl RuleProcessor for GmailClient { .hub() .users() .messages_batch_modify(batch_request, "me") - .add_scope("https://www.googleapis.com/auth/gmail.modify") + .add_scope("https://www.google.com/") .doit() .await .map_err(Box::new)?;