作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个通过 az login
登录到 Azure 的控制台
我可以运行以下 JavaScript,控制台会按照我的预期输出我的详细信息
const { DefaultAzureCredential } = require("@azure/identity");
const credential = new DefaultAzureCredential();
console.log(credential);
使用凭据
我想从搜索服务
读取API key
因此,我可以按如下方式使用apiKey
indexClient = new SearchIndexClient(searchURL, new AzureKeyCredential(apiKey));
最佳答案
Using the credentials I would like to read the API key from a Searchservice
要获取管理 key ,您需要使用单独的 SDK:@azure/arm-search 。创建 SearchManagementClient
后使用该 SDK 和 AzureCredentials,您将需要调用 AdminKeys
的 get
方法之一.
关于node.js - 用于通过身份搜索的 AzureKeyCredential.DefaultAzureCredential,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69706468/
我有一个通过 az login 登录到 Azure 的控制台 我可以运行以下 JavaScript,控制台会按照我的预期输出我的详细信息 const { DefaultAzureCredential
我是一名优秀的程序员,十分优秀!