Hi @Charles Bell You can use the same process as explained here
The steps are as follows.
- On login, the React app contacts Azure App Service to initiate an authentication flow.
- Azure App Service performs an Open Auth flow with Azure AD. After the authentication flow completes, the app receives an access token.
- The app uses the access token to request a resource token from the resource token broker.
- The resource token broker uses the access token to request the user's identity from Azure AD. The user's identity is then used to request a resource token from Cosmos DB, which is used to grant read/write access to the authenticated user's partitioned collection.
- The React app uses the resource token to directly access Cosmos DB resources with the permissions defined by the resource token.
Please let me know if you need any additional information.
Regards
Geetha