Hi @Groza, VI (Vlad) ,
Thanks for reaching out.
The Microsoft identity platform does not allow you to get a token for several resources at once. When using the MSAL, the scopes parameter in the acquire token method should only contain scopes for a single resource.
You can specify multiple resources of a single application like graph.micrsoft.com/User.Read and graph.micrsoft.com/Directory.Read
Although you can use .WithExtraScopeToConsent method in 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.