As you know currently a user needs to access https://myapps.microsoft.com/ then select an organization and then a list of applications is displayed.
I'm trying to re-build that portal in a single JS page. The user already authenticates with Azure to reach this JS page, and my target is to make a call to microsoft and retrieve the list of applications available for this specific user.
All I found in microsoft docs is how to retrieve data and access token for a specific application using the client secret and details about this application. But in my case I don't have an application all I have is a tenant id.
Is this feasible? keep in mind I can only use JS not nodejs or angular etc.