From 341d4fbae535cb5503fd3a174bcaabf9210f3e2f Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Tue, 14 Jun 2022 11:21:26 +0530 Subject: [PATCH] fix: scope for apple login --- server/oauth/oauth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/oauth/oauth.go b/server/oauth/oauth.go index 68fd8dc..2cb7a3b 100644 --- a/server/oauth/oauth.go +++ b/server/oauth/oauth.go @@ -130,7 +130,7 @@ func InitOAuth() error { AuthURL: "https://appleid.apple.com/auth/authorize", TokenURL: "https://appleid.apple.com/auth/token", }, - Scopes: []string{}, + Scopes: []string{"email"}, } }