英文:
What's the difference between id and appId in az ad app list?
问题
Id
与 AppId
之间的区别是什么?
英文:
Considering the command az ad app list -o table
az ad app list -o table
DisplayName Id AppId CreatedDateTime
----------------------------- ------------------------------------ ------------------------------------ --------------------
azure-cli-... 123 789 2023-02-13T19:30:21Z
azure-cli-... 456 567 2023-02-13T19:30:47Z
What is the difference between the Id
of an app and its AppId
?
答案1
得分: 1
id 是目录应用对象的标识符,而 appId 是client的标识符。您使用前者来管理您的应用程序对象,使用后者来进行身份验证或获取令牌。
英文:
id is the directory application object id while appId is the client Id. You use the former to manage your application object and the latter to authenticate or get tokens.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论