我将以下标头发送到我的 akka-http api: "Content-type": "application/json"
, "Accept": "application/json"
, "AppId": "some_id"
.
如何在我的 akka-http 路由中获取“AppId”自定义标头?
(get & parameters("id")) { (id) =>
complete {
val appId = ?? // I want to get custom header here.
}
}
谢谢。