我正在使用 NSwagStudio 从 Swagger 2.0 JSON 文件生成客户端类/代码。
以前,它用于生成以下身份验证代码:
//Authentication
var plainTextBytes = System.Text.Encoding.UTF8.GetBytes("username:password");
string encodedAuth = System.Convert.ToBase64String(plainTextBytes);
request_.Headers.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Basic", encodedAuth);
现在它没有生成上述Authorization
标题。我应该在 JSON 文件中进行哪些更改以确保生成的代码具有如上的身份验证代码?