我们正在尝试使用 API 处理程序文档中的以下语法来实现对 API 的 no.of 请求
val app = Javalin.create {
it.defaultContentType = "application/json"
it.enableWebjars()
it.addStaticFiles("", Location.CLASSPATH)
it.enableCorsForAllOrigins()
it.dynamicGzip = true
}
app.options("/*") { ctx -> ctx.status(405) }
app.get("/*"){ctx ->
RateLimit(ctx).requestPerTimeUnit(5, TimeUnit.MINUTES) // throws if rate limit is exceeded
ctx.status("Hello, rate-limited World!") }
但最终得到未解决的参考 Ratelimit错误。这里有语法的指针吗?
我们正在使用 Kotlin 来实现它。