Vertx - 使用 OAuth2 保护路由时缺少 GET 参数

Posted

技术标签:

【中文标题】Vertx - 使用 OAuth2 保护路由时缺少 GET 参数【英文标题】:Vertx - missing GET parameters while securing route using OAuth2 【发布时间】:2018-03-17 13:32:12 【问题描述】:

我遵循了这个使用 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

当我使用

从浏览器 /endpoint 调用时
 http://localhost:8080/endpoint?param=foo 

它按预期工作并返回 PARAM: foo,而当我用

调用受保护端点时
http://localhost:8080/protected/endpoint?param=foo

它正确地将我重定向到 GitHub 登录页面,然后将查询返回给我的处理程序但没有 GET 参数,因此来自端点的响应是 PARAM: null

知道我做错了什么吗?

【问题讨论】:

【参考方案1】:

在 vert.x

【讨论】:

在 3.5.0.Beta1 上仍然无法正常工作。您知道更改 POST 并在正文中提供参数是否适用于 3.4.2? 这是正确的,修复在 beta1 当前快照工作后合并。

以上是关于Vertx - 使用 OAuth2 保护路由时缺少 GET 参数的主要内容,如果未能解决你的问题,请参考以下文章

Vertx 路由初体验

Vertx:java.sql.SQLSyntaxErrorException:用户缺少权限或找不到对象:ACHAT

额外使用 OAuth2 进行身份验证时缺少 DaoAuthenticationProvider

使用 OAuth2 保护 REST API:创建名称为“scopedTarget.oauth2ClientContext”的 bean 时出错:范围“会话”未激活

Spring Oauth2.0 缺少授权类型

使用 OAuth2 保护服务,JWT 令牌不起作用 Spring Cloud