我遵循了使用OAuth2和GitHub提供程序http://vertx.io/docs/vertx-web/java/#_oauth2authhandler_handler来保护路由的示例,该示例运行正常,但在请求重定向后缺少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参数,因此来自端点的响应为PARAM:null。

知道我在做什么错吗?

最佳答案

在vert.x

07-27 13:27