A cloud-based identity and access management service for securing user authentication and resource access
Hello @Vlado , access token will be retrieved in raw format and should be threated like an opaque string. It's meant for the resource (API) to decode it. In your case you're getting an access token for MS Graph which, as other Microsoft APIs, may not be always be decodable. This does not apply to access tokens issued by your own Azure AD APIs (app registrations) or id tokens which are always JWT and can be decoded by many libraries available.
Please let me know if you need more help. If the answer was helpful to you, please accept it and, optionally, provide feedback so that other members in the community can benefit from it.