I am sending an email to people, and in that email, I want to include a link for them to click. That link should send a POST (maybe GET, I’ll see) to the workflow that I’m creating to handle the link. However, I don’t want the URL and server name to be exposed in the email in case I change it or in case I modify the server.
You could try to use one of the redirection services, like bitly or tinyurl, I guess. What do you think? There are also self-hosted solutions for redirection as well (YOURLS, Kutt, Shlink, LinkStack etc)
They redirect to a provided full url, which is fine in your case - if later you change the destination or modify the server, all you will need to do is just change the destination url in the redirect configuration.
What I want is to take the information that the user provides and send it to my n8n instance URL, but I don’t want my real URL to appear in the address bar. So something like this:
I think the only way to do that is to send it to the responseurl.com server and have it send the information to the n8n instance. But I’m not sure if there is another simpler way.… because I’m not even sure how to do what I’m suggesting!