From 078fc25845f3a7837b48ad9edbe7cb68316e2e99 Mon Sep 17 00:00:00 2001 From: Sean Leonard Date: Wed, 26 Aug 2020 08:56:56 -0700 Subject: [PATCH] Remove Google+ OAuth scope The scope is no longer available per https://developers.google.com/+/api-shutdown Fixes #1472 Fixes #1573 --- cps/oauth_bb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/oauth_bb.py b/cps/oauth_bb.py index 3777d751..712f7974 100644 --- a/cps/oauth_bb.py +++ b/cps/oauth_bb.py @@ -122,7 +122,7 @@ if ub.oauth_support: ele2 = dict(provider_name='google', id=oauth_ids[1].id, active=oauth_ids[1].active, - scope=["https://www.googleapis.com/auth/plus.me", "https://www.googleapis.com/auth/userinfo.email"], + scope=["https://www.googleapis.com/auth/userinfo.email"], oauth_client_id=oauth_ids[1].oauth_client_id, oauth_client_secret=oauth_ids[1].oauth_client_secret, obtain_link='https://github.com/settings/developers')