Reputation: 531
I have a mobile app designed in Unity. This app needs to access few videos which are stored on Azure Blob Storage. The app would be launched on Microsoft Intune and will be available for employees only. Please help in knowing the most secure way to access the videos through app. I don't want to store any credentials/key on the app. I can think of few options.
Upvotes: 0
Views: 810
Reputation: 18387
1 - don't do that
2 - also, don't do that
3 and 4 - I would recommend you creating an API (can be as simple as an Azure Function) which will have a managed identity associated and will be used to access the blobs (videos) and retrieve to your app.
Upvotes: 1