Azure 应用服务在添加到 Azure Exlorer 后使用自定义方案删除源

问题描述 投票:0回答:2

我被要求将此源添加到 Azure 中应用服务的 CORS 设置中

capacitor://localhost

我使用 Azure 资源管理器成功将源添加到应用服务的 CORS

但是,几分钟后,我刚刚在 Azure Explorer 中添加的源突然被删除了

出现这种情况有什么原因吗?

带有 https 的其他源是 CORS 设置中保留的源

azure cors azure-web-app-service
2个回答
0
投票

应用服务 CORS 示例。不允许添加您正在添加的架构:

enter image description here


0
投票

能够使用 Azure 门户中的 Cloud Shell 来解决此问题和 UI 验证:

az webapp cors add --resource-group YOUR-RG --name YOUR-APP --allowed-origins 'capacitor://localhost'

如果您还需要允许凭据,您可以在 Azure 门户中的 API -> CORS 部分执行上述命令后启用它;它不会抱怨已经保存的原点。

© www.soinside.com 2019 - 2024. All rights reserved.