0
我遵循這個使用OAuth2和GitHub提供程序保護路由的示例:http://vertx.io/docs/vertx-web/java/#_oauth2authhandler_handler它工作正常,但請求重定向後缺少GET參數。Vertx - 使用OAuth2確保路由時缺少GET參數
我的代碼:
public class MyVerticle extends AbstractVerticle {
@Override
public void start() throws Exception {
HttpServer server = vertx.createHttpServer();
Router router = Router.router(vertx);
OAuth2Auth authProviderGitHub = GithubAuth.create(vertx, "<CLIENT_ID>", "<CLIENT_SECRET>");
OAuth2AuthHandler oauth2 = OAuth2AuthHandler.create(authProviderGitHub, "http://localhost:8080/callback");
oauth2.setupCallback(router.route());
router.route("/protected/*").handler(oauth2);
Handler<RoutingContext> requestHandler = (routingContext) -> {
String paramValue = routingContext.request().getParam("param");
routingContext.response().end("PARAM: " + paramValue);
};
router.get("/endpoint").handler(requestHandler);
router.get("/protected/endpoint").handler(requestHandler);
server.requestHandler(router::accept).listen(8080);
}
}
我有兩個簡單的端點:
/endpoint // public, without protection
和
/protected/endpoint // protected with OAuth2
當我從一個瀏覽器/端點調用與
http://localhost:8080/endpoint?param=foo
它工作正常,並返回PARAM:FOO,而當我打電話與
http://localhost:8080/protected/endpoint?param=foo
保護端點它正確地重定向我到GitHub的登錄頁面,然後返回查詢到我的處理程序,但沒有GET參數,因此來自端點的響應是參數:null。
任何想法我做錯了什麼?
On 3.5.0.Beta1仍然不起作用。你知道如果改變POST和提供參數在體內將與3.4.2一起使用? – Rem
這是正確的修復在beta1當前快照執行工作後合併。 –
https://github.com/vert-x3/vertx-web/issues/710 – ses