Testing HTTP Basic Authentication

虽然始终可以用 HTTP Basic 进行身份验证,但记住头名称、格式和对值进行编码会有点乏味。现在,可以使用 Spring Security 的 httpBasic RequestPostProcessor 来完成此操作。例如,下面的代码片段:

  • Java

  • Kotlin

mvc
	.perform(get("/").with(httpBasic("user","password")))
mvc.get("/") {
    with(httpBasic("user","password"))
}

将尝试使用 HTTP 基本身份验证,通过确保在 HTTP 请求上填充以下标题,对具有用户名“user”和密码“password”的用户进行身份验证:

Authorization: Basic dXNlcjpwYXNzd29yZA==