Hi everyone,
I’m using OAuth 2.0 (3LO) to authenticate users in my app. After completing the auth flow, I receive an access token — and I can then call the /oauth/token/accessible-resources
endpoint to get the cloudId
of the site the user has access to.
My question is:
Is there any way to extract the cloudId
(or any site-identifying info) directly from the access token itself? Or is calling /oauth/token/accessible-resources
always required to determine which site(s) the token is valid for?
Thanks in advance!