Hi @LoicFrasseMathon,
I understand you are trying to retrieve access token with multiple scopes.
Unfortunately, there is no high priority scope to achieve this as you can't mix two resources XboxLive.signin offline_access and Microsoft Graph. The access token is issued according to the API audience which identifies the intended recipient of the token you want to access, and this should be unique.
The Microsoft identity platform does not allow you to get a token for several resources at once.
Although you can use .WithExtraScopeToConsent method in your application which will allow you to silently get the token for another API after calling first webAPI.
Hope this will help.
Thanks,
Shweta
---------------------------
Please remember to "Accept Answer" if answer helped you.