我将 swagger 与servicestack一起使用,但我从我的 /resources URL 收到 401 未经授权的错误,因为它需要 API 密钥。
除非我弄错了,否则根据文档,在从我的 html 页面初始化 Swagger 时,我应该将supportHeaderParams以及JSON 参数中的apiKeyName和apiKey值设置为 true 。
然后我希望在 http 请求标头中看到我的 API 密钥,但它仍然被附加到 URL 而不是标头集合中。
这是在我的 HTML 页面中初始化 Swagger 的代码:
window.swaggerUi = new SwaggerUi({
discoveryUrl: "http://pathtomyservice.com/resources",
headers: { "testheader" : "123" },
apiKey: "123",
apiKeyName: "Api-Key",
dom_id:"swagger-ui-container",
supportHeaderParams: true,
supportedSubmitMethods: ['get', 'post', 'put', 'delete'],
onComplete: function(swaggerApi, swaggerUi){
if(console) {
console.log("Loaded SwaggerUI");
console.log(swaggerApi);
console.log(swaggerUi);
}
$('pre code').each(function(i, e) {hljs.highlightBlock(e)});
},
onFailure: function(data) {
if(console) {
console.log("Unable to Load SwaggerUI");
console.log(data);
}
},
docExpansion: "none"
});
不幸的是,我根本没有得到任何标题,没有“Api-Key”或“testheader”。