We've been following the guide Set up a resource owner password credentials flow in Azure Active Directory B2C to retrieve an access token from a user by username (email) / password. The request is successful and we get an valid response.
The issue we're having is when we're trying to use this access token to make a Graph API call, for instance creating another user in B2C.
The problem seems to be that Graph API requires a x5t claim which is not included in a v2 access-token (as far as we understand). However in the body of the jwt token it is stated that it's a v1 token, even though the header suggests a v2 and our app-registration manifest is specified to version 2.
Request to fetch access-token:
https://<tenant-name>.b2clogin.com/<tenant-name>.onmicrosoft.com/B2C_1_ROPC_Auth/oauth2/v2.0/token
How can we use the access-token we recieve from B2C using the ROPC user flow in Graph API?