Azure 应用服务基本 api 安全
azure app service basic api security
我在 Azure 上有 运行 基本待办事项应用程序服务 运行。调用下面的 url 将显示 todoitem table 中的内容。如何添加基本安全性以防止任何人访问此数据,例如基本参数 ToDoItem?MyToken=12345。
How can I add basic security to prevent this data from being accessed by anyone, like a basic parameter, ToDoItem?MyToken=12345.
我建议您使用内置 Authentication and authorization in Azure App Service。
App Service supports five identity providers out of the box: Azure Active Directory, Facebook, Google, Microsoft Account, and Twitter. To expand the built-in support, you can integrate another identity provider or your own custom identity solution.
这里有一些很棒的教程,您可以参考它们:
对于Node.js后端,您可以关注30 DAYS OF AZURE MOBILE APPS。
要使用 C# 开发 azure 移动应用程序,您可以关注 here。
我在 Azure 上有 运行 基本待办事项应用程序服务 运行。调用下面的 url 将显示 todoitem table 中的内容。如何添加基本安全性以防止任何人访问此数据,例如基本参数 ToDoItem?MyToken=12345。
How can I add basic security to prevent this data from being accessed by anyone, like a basic parameter, ToDoItem?MyToken=12345.
我建议您使用内置 Authentication and authorization in Azure App Service。
App Service supports five identity providers out of the box: Azure Active Directory, Facebook, Google, Microsoft Account, and Twitter. To expand the built-in support, you can integrate another identity provider or your own custom identity solution.
这里有一些很棒的教程,您可以参考它们:
对于Node.js后端,您可以关注30 DAYS OF AZURE MOBILE APPS。
要使用 C# 开发 azure 移动应用程序,您可以关注 here。