Remember User - iFrame

It appears that Typebot will not remember a user if called via an iFrame. Is there any way around that or is this unexpected behaviour?
1 Reply
Baptiste
Baptiste4mo ago
The information is stored on either session or local storage. You cannot access the local Storage from an iframe unless the third party URL and html file hosted are on the same domain. and for your use case you could use the window.postMessage to access the data across the windows or iframes. https://stackoverflow.com/questions/61554531/how-to-use-localstorage-in-iframe
Stack Overflow
How to use localStorage in iFrame
I am trying to access an website in iframe tag. That source in iframe uses localStorage. But i'm not able to access it since I am loading it in iframe. Here is my sample code <!DOCTYPE html>...