ID Tokens vs Access Tokens - oauth.net
https://oauth.net/id-tokens-vs-access-tokensThe ID token may also contain information about the user such as their name or email address, although that is not a requirement of an ID token. Here are some further differences between ID tokens and access tokens: ID tokens are meant to be read by the OAuth client. Access tokens are meant to be read by the resource server. ID tokens are JWTs ...
ID Tokens vs Access Tokens
oauth.net › id-tokens-vs-access-tokensHere are some further differences between ID tokens and access tokens: ID tokens are meant to be read by the OAuth client. Access tokens are meant to be read by the resource server. ID tokens are JWTs. Access tokens can be JWTs but may also be a random string. ID tokens should never be sent to an API. Access tokens should never be read by the client. Related: Access Tokens; Refresh Tokens; More resources ID Tokens (oauth.com) ID Token and Access Token: What Is the Difference? (auth0.com)