在 Azure 门户中连接两个应用程序服务和简易表
Connect two app services and easy tables in the azure protal
我想在 Azure 门户中连接两个移动应用服务及其简单 table。
两个系统的用户具有不同的读取和编辑权限。
第一个系统是只读用户,另一个系统是管理员用户。
因此,当一个用户 post 在第一个应用服务中向 table 发送内容时,它应该在第二个应用服务中触发 post 或事件。
两个应用服务端点可能如下所示:
https:// some-random-url .azurewebsites.net/tables/posts
https:// some-other-random-url .azurewebsites.net/tables/posts
有什么方法可以通过 Api 连接两个 azure 移动应用程序服务吗?
为了简单 tables,您正在为您的移动应用程序使用 Node.js 后端。您可以利用 KUDU 或 App Service Editor 检查您的后端代码,您可以遵循详细信息 Understanding the Azure App Service Editor.
So when one user post something to a table in the first app service, it should trigger a post or event in the second app service.
据我了解,Azure 移动应用程序提供了一种公开 table API 的简单方法。您可以使用相关身份验证在您的第一个移动应用程序中内部调用您的第二个移动应用程序端点。此外,我建议您关注 30 DAYS OF AZURE MOBILE APPS 以更好地了解 Azure 移动应用程序。
此外,您可以针对您的问题提供更详细的场景,然后我们可以为您提供其他更好的解决方案来实现您的需求。
我想在 Azure 门户中连接两个移动应用服务及其简单 table。 两个系统的用户具有不同的读取和编辑权限。 第一个系统是只读用户,另一个系统是管理员用户。
因此,当一个用户 post 在第一个应用服务中向 table 发送内容时,它应该在第二个应用服务中触发 post 或事件。
两个应用服务端点可能如下所示:
https:// some-random-url .azurewebsites.net/tables/posts
https:// some-other-random-url .azurewebsites.net/tables/posts
有什么方法可以通过 Api 连接两个 azure 移动应用程序服务吗?
为了简单 tables,您正在为您的移动应用程序使用 Node.js 后端。您可以利用 KUDU 或 App Service Editor 检查您的后端代码,您可以遵循详细信息 Understanding the Azure App Service Editor.
So when one user post something to a table in the first app service, it should trigger a post or event in the second app service.
据我了解,Azure 移动应用程序提供了一种公开 table API 的简单方法。您可以使用相关身份验证在您的第一个移动应用程序中内部调用您的第二个移动应用程序端点。此外,我建议您关注 30 DAYS OF AZURE MOBILE APPS 以更好地了解 Azure 移动应用程序。
此外,您可以针对您的问题提供更详细的场景,然后我们可以为您提供其他更好的解决方案来实现您的需求。