本文介绍了功能级别授权在Azure中授权密钥的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
推荐答案
由于它只是一个REST API,您可以使用任何HTTP客户端呼叫它们。例如,
Since its just a REST API, you can call them using any HTTP Client. For example,
- 在C#中, HttpClient class
- In C#, the HttpClient class
- 在NodeJS中,使用类似 axios 内置http模块
- In NodeJS, use modules like axios or built-in http module
- 在PowerShell中,使用 Invoke-RestMethod
- In PowerShell, use Invoke-RestMethod
- 在bash中,使用 curl
- In bash, use curl
请注意,要对此REST API进行身份验证,您必须使用门户网站的管理员密钥。
Note that to authenticate against this REST API, you will have to use the Admin Key from the portal.
如果您还想以编程方式执行此步骤,请查看此 SO thread 逐步解释这一点。
If you want a programmatic way to do this step as well, check out this SO thread that explains this step by step.
这篇关于功能级别授权在Azure中授权密钥的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!