A cloud-based identity and access management service for securing user authentication and resource access
Hi @d d
Thank you for posting this in Microsoft Q&A.
JSON Web Tokens (JWTs) are used to encode the access token and refresh token. The size of a JWT is impacted by the claims it contains in terms of number and size. The more claims you request, the larger the token size.
Using a JWT decoder and measuring the length of the decoded token can help you estimate the token's exact size, although there is no definitive answer. A typical access token for Graph API might be around 1.5 KB, and a typical refresh token might be around 1 KB. However, these are only rough estimates, and the actual size may vary depending on the app and the user.
Hope this helps. Do let us know if you any further queries.
Thanks,
Navya.
If the answer is helpful, please click "Accept Answer" and kindly "upvote" it.