I got this ``` install(Authentication) { jwkAuthe...
# ktor
m
I got this
Copy code
install(Authentication) {
	jwkAuthentication("auth1") // Install JWK auth here
	basicAuth("auth2") // Install basic-auth here
}
routing {
	authenticate("auth1", "auth2") {
		post("/xxx") {
                         ....
		}
	}
}