Interface BackchannelAuthorizeRestWebService

    • Method Detail

      • requestBackchannelAuthorizationPost

        @POST
        @Path("/bc-authorize")
        @Produces("application/json")
        jakarta.ws.rs.core.Response requestBackchannelAuthorizationPost​(@FormParam("client_id")
                                                                        String clientId,
                                                                        @FormParam("scope")
                                                                        String scope,
                                                                        @FormParam("client_notification_token")
                                                                        String clientNotificationToken,
                                                                        @FormParam("acr_values")
                                                                        String acrValues,
                                                                        @FormParam("login_hint_token")
                                                                        String loginHintToken,
                                                                        @FormParam("id_token_hint")
                                                                        String idTokenHint,
                                                                        @FormParam("login_hint")
                                                                        String loginHint,
                                                                        @FormParam("binding_message")
                                                                        String bindingMessage,
                                                                        @FormParam("user_code")
                                                                        String userCode,
                                                                        @FormParam("requested_expiry")
                                                                        Integer requestedExpiry,
                                                                        @FormParam("request")
                                                                        String request,
                                                                        @FormParam("request_uri")
                                                                        String requestUri,
                                                                        @Context
                                                                        jakarta.servlet.http.HttpServletRequest httpRequest,
                                                                        @Context
                                                                        jakarta.servlet.http.HttpServletResponse httpResponse,
                                                                        @Context
                                                                        jakarta.ws.rs.core.SecurityContext securityContext)