了解资源和权限 url
Understanding resource and authority url
我正在尝试通过休息访问 azure 资源管理器,部分过程是提供授权 header。我已经能够使用 adal 库成功检索令牌。
我可以使用 https://management.core.windows.net/ or https://management.azure.com/ 作为资源 URL 来获取令牌。两者有什么区别?
我也想了解一下login.microsoftonline.com/和https://login.windows.net/的区别,因为权限URL
I can use either https://management.core.windows.net/ or
https://management.azure.com/ as the resource URL to get the token.
What is the difference between two ?
management.core.windows.net
是 Azure Service Management REST API
的终点,而 management.azure.com
是 Azure Resource Manager REST API
的终点。
I also would like to understand the difference between
login.microsoftonline.com/ and https://login.windows.net/ as the
authority URL
两者本质上是相同的,但建议您使用 login.microsoftonline.com
作为 login.windows.net
重定向。因此,如果您使用前者,则可以节省一次重定向。但是,建议您开始使用前者。请阅读此博客 post 了解更多详情:https://blogs.technet.microsoft.com/enterprisemobility/2015/03/06/simplifying-our-azure-ad-authentication-flows/.
我正在尝试通过休息访问 azure 资源管理器,部分过程是提供授权 header。我已经能够使用 adal 库成功检索令牌。
我可以使用 https://management.core.windows.net/ or https://management.azure.com/ 作为资源 URL 来获取令牌。两者有什么区别?
我也想了解一下login.microsoftonline.com/和https://login.windows.net/的区别,因为权限URL
I can use either https://management.core.windows.net/ or https://management.azure.com/ as the resource URL to get the token. What is the difference between two ?
management.core.windows.net
是 Azure Service Management REST API
的终点,而 management.azure.com
是 Azure Resource Manager REST API
的终点。
I also would like to understand the difference between login.microsoftonline.com/ and https://login.windows.net/ as the authority URL
两者本质上是相同的,但建议您使用 login.microsoftonline.com
作为 login.windows.net
重定向。因此,如果您使用前者,则可以节省一次重定向。但是,建议您开始使用前者。请阅读此博客 post 了解更多详情:https://blogs.technet.microsoft.com/enterprisemobility/2015/03/06/simplifying-our-azure-ad-authentication-flows/.