Workforce OAuth: try platform scope for full access

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-02 01:11:27 +00:00
parent 1c16f0ae9b
commit 1ae1019ea5

View file

@ -31,6 +31,7 @@ async function getWorkforceToken() {
grant_type: 'password', grant_type: 'password',
username: creds.email, username: creds.email,
password: creds.password, password: creds.password,
scope: 'platform',
}).toString(), }).toString(),
signal: AbortSignal.timeout(10000), signal: AbortSignal.timeout(10000),
}) })