我在 Power BI 设计器中使用 Power Query 来查询 REST API。第一个请求是: http://domain/httpAuth/app/rest/server 返回:
<server>
<builds href="/httpAuth/app/rest/builds"/>
</server>
从那里我使用 Power Query 查询http://domain/httpAuth/app/rest/builds以获取构建列表,然后遍历构建列表,依次调用每个构建列表。每个构建的 URL 格式为: http://domain/httpAuth/app/rest/builds/id:buildId
问题是我被提示为每个请求输入凭据。这是乏味且不可行的(我们有很多构建)。有没有办法为(比如说)存根http://domain/httpAuth/app/rest定义一次凭据,并让该存根下的每个资源都使用相同的凭据?