We have an application that has URL parameters that are required for server side rendering. Normally post authentication on the redirect URI, we have a functionality where the redirect component is responsible for redirection back to the URL via the history API or something similar. However, this will be useless for the application’s SSR parameters.
This is what we want for example during redirection back to the redirect URI. Below, we want the ssrParam1 and ssrParam2 to be included in the URL parameters.
http://www.example.com/path?state=EXAMPLE_STATE&code=EXAMPLE_CODE&ssrParam1=EXAMPLE_PARAM&ssrParam2=EX