[New plugin] šŸ”’ Auth0 integration

This is why you need a unique identifier for anonymous users, what I called session in my previous post. In bubble, I looked up and I think you can use the bubble cookies, but I’m unsure how to use them.
Another way is to generate a string and store it in local storage / cookie on first load of a page, then whenever the user navigates, you check if the string is present or not.
Then, you create a new datatype with two fields : session and lastUrl
at every page load you do an upsert* with session and the current url
After login, you check in this data the line where the session is the one of the user and you get the url he was accessing right before being redirected.