I’m looking for a way to work with parameters in URLs that are double encoded.
Here is an example of the URL that my app is being passed:
&%3Brating=1&%3Bsource=calendly&%3BcustEmail=user@example.com&%3BticketSubj=Swiftly%20Demo
Parameters in this url:
- rating
- source
- custEmail
- ticketSubj
Normally, I use Get data from URL to extract extract these paragmeters but that method doesn’t work with these double encoded URLs. Any ideas?