我堅持使用REST API用於獲取訂閱計費信息從Resource Usage API如何獲取從蔚藍
我想獲得與如何獲得令牌非交互式客戶端幫助驗證訪問令牌。我選擇使用REST API,因爲Azure客戶端似乎不支持資源使用API。
由於Authorization code grant (interactive clients)描述,我用我的訂閱ID調用了請求,但令牌沒有正確返回。
[[email protected] src]# curl -XPOST https://login.microsoftonline.com/xxxxx/oauth2/token -d ""
{"error":"invalid_request","error_description":"AADSTS90014: The request body must contain the following parameter: 'grant_type'.\r\nTrace ID: 32981285-a021-45c3-8d2f-62db49d2c2f1\r\nCorrelation ID: d88849dd-20f9-462e-9ce9-66b6fde0170e\r\nTimestamp: 2017-03-04 04:06:44Z","error_codes":[90014],"timestamp":"2017-03-04 04:06:44Z","trace_id":"32981285-a021-45c3-8d2f-62db49d2c2f1","correlation_id":"d88849dd-20f9-462e-9ce9-66b6fde0170e"}[[email protected] src]#
如何獲取令牌?
我不請求中沒有任何請求身體參數。你可以包括他們每個文件。 –