0
GitHubプロバイダを使用してOAuth2を使用して経路を確保するこの例は、http://vertx.io/docs/vertx-web/java/#_oauth2authhandler_handlerです。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);
}
}
私は2つの単純なエンドポイントがあります。
/endpoint // public, without protection
と
/protected/endpoint // protected with OAuth2
私は
ブラウザ /エンドポイントから呼び出します3210http://localhost:8080/endpoint?param=foo
それが期待どおりに動作し、PARAM戻る:私は
http://localhost:8080/protected/endpoint?param=foo
で保護されたエンドポイントを呼び出すとき、それは正しく私のハンドラではなくGETパラメータなしでクエリを返し、その後、GitHubのログインページに私をリダイレクトするのに対し、FOOをしたがって、エンドポイントからの応答はPARAM:nullです。
私が間違っていることを知っていますか?
3.5.0.Beta1ではまだ動作しません。 POSTへの変更と本体のパラメータの提供が3.4.2で動作するかどうかは分かりますか? – Rem
これは、beta1の現在のスナップショットが機能した後に修正がマージされたことが正しいことです。 –
https://github.com/vert-x3/vertx-web/issues/710 – ses