I can access the single resource (web API) from client application using users from different tenants. This activity can be performed after granting the consent by admin user from those tenants
I created following URL’s to verify it
https://login.microsoftonline.com/common/oauth2/authorize?client_id=<clientApp.clientId>&response_type=code&resource=<webapi.clientId>&prompt=admin_consent
after granting the consent by tenant admin, the client application (AngularJs) can access the resource (Web API)
But my client application needs to access multiple resources (web API).
How to send the consent for more than one resources using single URL?