Hi! I have a question trying to send the ID of a listing as a URL parameter.
When a user creates a new listing to my marketplace (in my case, a “service_request” or request of a service to be done by a professional), he´s automatically redirected to the listing he´s just published. To build the listing, I store all the inputs entered by the user in a new service_request, use as ID of the service_request the unique_ID truncated to the last 8 digits (see pic 1 below) and send the user to that service_request page passing this truncated ID (as ids) and I also send other data (the result of the previous step, see pic 2 below), because otherwise it gives me an error (“Data to send” is marked in red).
My problem is that the URL to which he´s sent looks like this:
nameoftheweb.bubbleapps.io/version-test/service_request/1501426862867x755668764479979500?ids=79979500
So, I’m sending to service_request the following info: /unique_id?ids=ID. To me, it looks like I’m sending the same parameters twice… I´d like to send the ids just once, and that´s all (nothing about the unique_id). The problem is that in the service_request page I also display some info about the profile of the user that created the service_request, so in case I delete any of the parameters in the URL I have some errors in such destiny page.
I mean, I could live with many parameters in the URLs, but it feels like it can be done much easier and SEO-friendly… Actually, in my clone of Airbnb (made during the Code-Free course) I do it much simpler, but I cannot replicate that behaviour here.
Any advise?
Thanks a lot!