Hi,
We have integrated AEM apps with Okta and to resolve one the issue when user got access at Okta but not in AEM due to saml connection between AEM and Okta. We added parameter in URL when user is redirecting from other application (outside from AEM) and trying to read the parameter in doFilter at Access Check Filter but it is returning null values at doFilter.
Anyone can let me know is there any way to read those parameter preferable without wrapper. Also, we tried to read via sling request and http request.
String queryString = ((HttpServletRequest) request).getQueryString(); --> null
request.getParameter("request_access") --> null
String queryParameter = slingRequest.getQueryString(); --> null
slingRequest.getParameter("request_access") --> null