Posts

Showing posts with the label azure-mobile-services

Azure Mobile App Service APIkey

Azure Mobile App Service APIkey I created an Azure Mobile App Service which is currently accessible 'Anonymously' Anonymous access is enabled on the App Service app. Users will not be prompted for login. Anonymous access is enabled on the App Service app. Users will not be prompted for login. To make it secure I can enable App Service Authentication which will ask users to log in App Service Authentication But this is not what I want - The data in this app is only accessed by Application without the need of each and every user to login to my app before using it. So you might say, in this case, Anonymous access is fine but I want to restrict it with something at least like an API Key so I will have access to the API which my app can use to access the data to prevent random requests as anyone can just go and use Postman and start getting data without any authentication. Anonymous access API Key So in short, I don't want individual user authentication, but at least an API K...