Hey everyone…
I am building an event management app. My app includes a booking form which my “Subscribers” need to allow their “Clients” access to.
I’m trying get my head around the possible ways to do this…
1) Embed the Booking Form
This is all possible, but is currently creating some problems on an Apple Mac and is not what all Subscribers want to do.
2) Link to the Booking Form
(e.g. myapp.com/booking-form/?s=123&e=456
)
This is okay, but the booking form page the Clients land on is on my app’s URL rather than the Subscriber’s URL, and my test Subscribers aren’t liking that too much.
3) A Domain Masked Link to the Booking Form
So I’d ideally like my Subscribers to provide a link to my app’s booking form, but the url to appear to be coming from their domain. I understand this is called “Domain Masking”. In the ideal world, they would set up that
subscriber.com/booking-form
is actually taking their client to
myapp.com/booking-form
But their client’s browser still shows subscriber.com/booking-form
.
They would then be able to pass in the parameters too, so a link to:
subscriber.com/booking-form/?s=123&e=456
is actually displaying:
myapp.com/booking-form/?s=123&e=456
Do any of you Bubblers out there know how to do this?
Many thanks!
Antony.