Hey guys. I’m pretty familiar with Make.
I hope it is possible to implement a scenario to auth users with login as a click on disposable link. I don’t want to code or pay for saas solution.
Anyway it is just a puzzle for me to get solution with Make.
The task is:
- i have a static html website
- i have a list of emails i want to share this site with
- i want it to be just a click on link to get access
My ideation is:
- setup basic auth on website server with one login and password
- if user is on the list (data store) - send them email with link to webpage, generated by webhook, adding random string
- opening this page sets cookies for access and a random string as validation, and redirects to my website-
- once the link is used it prevents second opening this link
What do you think about this flow? Did anyone make something like that?
Thank you