diff --git a/server/handlers/oauth_callback.go b/server/handlers/oauth_callback.go index bd5d5ac..549b79a 100644 --- a/server/handlers/oauth_callback.go +++ b/server/handlers/oauth_callback.go @@ -579,6 +579,7 @@ func processAppleUserInfo(ctx context.Context, code string) (*models.User, error } claims := make(map[string]interface{}) + log.Debug("Decoded data :%s", string(decodedClaimsData)) err = json.Unmarshal(decodedClaimsData, &claims) if err != nil { log.Debug("Failed to unmarshal claims data: ", err)