I am trying to do IDP authentication in angular 8 application.so my angular application first redirect to idp server and then idp server gives me SAML response for further autho
I achieved this by writing a index.jsp file in my angular project
<%
String uiBaseUrl = "/ngApp";
String samlResponse = request.getParameter("SAMLResponse");
if (samlResponse == null) {
String error = request.getParameter("error");
String error_description = request.getParameter("error_description");
%>
<% } else { %>
<% } %>