So, I hope someone knows the answer to this. I want to serve a web app built in Adalo on a website. Is there a way to do this? Is it even possible? If so how…can someone point me in the right direction.
Thank you very much for any help you can give.
Jason D.
Hi @Lynk what are you aiming to do?
What does that exactly mean?
Are you building an app and looking to publish it ? If so, you may want to have a look to this guide:
Otherwise, could you maybe elaborate a bit more on your amis?
Cheers,
Enrico
So here is what I am trying to do
Basically, I need a profile system that allows a company to sign up and create a profile. In their profile page would be a booking form. Each individual company could then share that profile page (booking form) that would allow the public to complete the booking form and create a reservation with said company. The problem I am having is how to ID the company in the shareable URL so when someone tries to book it goes to the correct company.
Hello @Lynk
If I got your idea correctly, you would have a signup form for the “companies” and a booking form for the “customers”.
Every screen in the PWA application has its own URL you can point to, so that would be the one to be shared, once the company-specific page will be available.
A couple of notes:
- even though the “users” won’t be signed up, there should be some sort of user distinction, otherwise the risks deriving from concurrency are high (may loose some data). In my app, for example, I used the landing page to automatically “signup” a user profile (username = maxUsersCount+1, fixed pwd) so that each user is “isolated” from others while operating in the app.
If you point a user to a specific URL without isolating him/her from potential others booking for the same “company”, you may loose one of them when they submit data. - Where would the booking data be stored? How are you planning to send them to the “companies”
Depending on those considerations, the app would be very easy or a bit more complex, but still feasible.
Enrico
So I was thinking of storing the booking info a DB collection based on a company ID and some other VAR in the profile/form. If each page has a URL how do I get to that URL. For example, is it stored in a collection somewhere? If my web app address is: https://mytestapp.adalo.com/bookinlynk. How do I create a link to each individual company profile? Would it be something like: https://mytestapp.adalo.com/bookinlynk/profiles?target=THE_COMPANY_ID
The URL has “target” and “params” querystring parameters holding automatically generated GUIDs (based on Adalo’s logic) - nothing, based on my experience, very explicit and plain as you’re looking for, but rather like:
https: / /mytestapp.adalo.com/bookinlink?target=275esjcdgbq4g8d3xe9cq5c3l¶ms=%7B%22cdv4lpyt3o1vmupukmroe5hsv.t_7i1ahuuowovhmlnam1f5qlyu9%22%3A1920%7D
Yes but how do I find the URLs?
You’d get them from the browser’s address bar
Yeah I dont think that worked. When I click the link it takes me to a page that says No Record. I am getting ready to test using a hidden field on the form that calls to the collection and grabs a user ID but I am not sure if it will work on not. I will let you know.
Thanks
Jason
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.