I'm currently receiving a callback with query parameters
like https://example.com?param=1234¶m2=432&parm3=789
at the end of my function I would like to return the user to https://example.com without the params. How would I be able to do this?
My HttpResponse return keeps the query params. I'm unsure how to purge them cleanly within a service.