I have an Azure App Services service set up with many Easy Tables. I'm accessing the data from these Easy Tables externally, from a node.js app running on a completely separate server.
I can access the tables using just basic http requests of the format https://[app service name].azure-mobile.net/tables/${table-name}?${odata-query}, and I can use post and patch requests to add / change lines on the tables too.
However, I can only do the above on tables that I have explicitly set to require no authentication - tables where I've set the permissions to everyone. Obviously this isn't ideal. How can I make a request to the server that will work for permission levels of Only authenticated users or Anybody with the application key? I'm fine with either of those options, would prefer to use the easier one.
via TKoL
No comments:
Post a Comment