Sending an array of things in query parameter

The separator is comma space (, ) but of course it must be URLencoded, the value of which is %2C%20

Example: Here’s a URL that sends the unique IDs of two Pets to some page:

https://someapp.bubbleapps.io/?pets=1670457512607x709180502256586900%2C%201670457533845x876356877611455200

We uncover how this is done by just doing it:

Are you constructing these URLs in some other environment outside of your app? If this is your own app isn’t it easier to just use “Go to page” than constructing the URLs yourself? (I do of course realize that there are many reasons you might construct your own querystrings – this is more of a rhetorical question.)

You don’t need to do that, obviously.

Another thing you could consider, if you like my plugins: Instead of passing giant URLs around, you could consider just storing that data in browser storage, like with Floppy for example.