From df53fe9f62ca2906d17a22819605b52b579a862f Mon Sep 17 00:00:00 2001 From: "Carl A. Adams" Date: Thu, 9 Apr 2026 08:05:21 -0700 Subject: [PATCH] Request profile claims because some Planet APIs expect the email cliam. --- planet/auth_builtins.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/planet/auth_builtins.py b/planet/auth_builtins.py index f870639d8..4a23d9ee9 100644 --- a/planet/auth_builtins.py +++ b/planet/auth_builtins.py @@ -64,9 +64,9 @@ class _ProductionEnv: "scopes": [ PlanetOAuthScopes.PLANET, PlanetOAuthScopes.OFFLINE_ACCESS, - # PlanetOAuthScopes.OPENID, - # PlanetOAuthScopes.PROFILE, - # PlanetOAuthScopes.EMAIL + PlanetOAuthScopes.OPENID, + PlanetOAuthScopes.PROFILE, + PlanetOAuthScopes.EMAIL ], # "client_type": "oidc_device_code", # Must be provided when hydrating the SKEL # "client_id": _SDK_CLIENT_ID_PROD, # Must be provided when hydrating the SKEL