檢視官方檔案「 Get a user 」 , 產生了一個操作範例的想法,在中國區Azure環境中,演示如何獲取AAD User資訊。
使用Microsoft Graph API,演示如何獲取AAD User資訊,因參考檔案是針對Global Azure,所以檔案種的URL為:
// Global Azure Microsoft Graph API Host
GET https://graph.microsoft.com/v1.0/me
需要修改為
// 中國區Azure的Microsoft Graph API Host GET https://microsoftgraph.chinacloudapi.cn/v1.0//me
那麼:如何來獲取Access Token呢?
1) 設定登入環境為中國區 Azure
2) az login 登入,在彈出框種輸入Azure使用者名稱及密碼
3) 使用 az account access-token 生成 Access Token
##設定Azure 環境為 Azure China Cloud az cloud set --name AzureChinaCloud ##登入 az login ## 生成 Access Token az account get-access-token
當使用以上指令生成的 Access Token 放入 https://microsoftgraph.chinacloudapi.cn/v1.0/me 請求,繼續錯誤。錯誤訊息提示 Audience不對 [Access token validation failure. Invalid audience.]
在 jwt.ms 上去解析Access Token後,發現aud使用的是 "https://management.core.chinacloudapi.cn/", 而我們請求的URL 是 https://microsoftgraph.chinacloudapi.cn/
所以,需要在生成Access Token時,指定 aud, 正確命令為: az account get-access-token --resource 'https://microsoftgraph.chinacloudapi.cn/'
## 設定Azure 環境為 Azure China Cloud az cloud set --name AzureChinaCloud ## 登入 az login #### 生成 Access Token, 使用預設resource (https://management.core.chinacloudapi.cn/) 作為 aud, ##az account get-access-token ## 修改resource為microsoft graph api az account get-access-token --resource 'https://microsoftgraph.chinacloudapi.cn/'
思考中。。。 。。。
明明只是修改請求中的me為User ID,而且這個User ID就是一個真實使用者的ID啊!
400 Bad Request, 是URL 不對嗎?
仔細,仔細檢視Get User介面檔案,原來真是沒有注意細節啊。
通過UserID或者User Principal Name的API URL是 https://microsoftgraph.chinacloudapi.cn/v1.0/users/<user id | user principal name>, 因為粗心,丟失了/users。
# 正確的 https://microsoftgraph.chinacloudapi.cn/v1.0/users/68b844af-*************************** VS # 錯誤的 https://microsoftgraph.chinacloudapi.cn/v1.0/68b844af-***************************
終於,大功告成。
1:獲取全部使用者資訊
GET https://microsoftgraph.chinacloudapi.cn/v1.0/users
2:根據mail查詢使用者
GET https://microsoftgraph.chinacloudapi.cn/v1.0/users?$count=true&$filter=startswith(mail,'yourmailaddress')
Microsoft Graph API Get a User :https://learn.microsoft.com/en-us/graph/api/user-get?view=graph-rest-1.0&tabs=http
az account get-access-token : https://learn.microsoft.com/en-us/cli/azure/account?view=azure-cli-latest
JWT 解析: https://jwt.ms/
Check endpoints in Azure : https://learn.microsoft.com/en-us/azure/china/resources-developer-guide
當在複雜的環境中面臨問題,格物之道需:濁而靜之徐清,安以動之徐生。 雲中,恰是如此!