How to receive a Website URL dynamically on your own hosted verify page?
Here, you can see that we are using scr={{HostName}} param to pass domain URL on the verify page, and so you are receiving the encoding value of the domain name on your verify page.
Example:
Now let's see how to decode it on your verify page & get plain text value.
It would be best if you inform your developer to add below JavaScript code on your verify page.
const urlParams = new URLSearchParams(window.location.search); // Finds param from URL const myParam = urlParams.get('src'); // retrieve src param value( encoded domain value) const plainText = window.atob(myParam); // get decoded value
Use the plainText variable value to display the domain name on your verify page.