Basically have an issue when I set the RelayState parameter to /test/example?key=value&key1=value1 , key1=value1 is being split away from the RelayState parameter instead of being included in it like "/test/example?key=value&key1=value1". I would be grateful for any assistance. Thanks
CodePudding user response:
I resolved this myself, basically when you build the page reference in apex code, you should only use the base url in the constructor, no parameters. Then, you add the parameters to the Page Reference's parameter map variable. That way the parameter is not split. Thanks!