Cross domain localstorage

archanjo784

Newbie
Joined
Nov 16, 2023
Messages
2
Reaction score
0
Hi!!

I have two domains and I need to share web data between then on frontend. I was using a localstorage for that, but after Chrome 115 update I lost this feature, someone has it solved?
I have searched, but I cannot find anything that help me.

Thanks!!
 
You may try to share some amount of data by using cookies, because you can have access to them in your backend from front side of app. If I understood you correctly.
 
It's not the same backend, that's the main problem. I have to share this id in the frontend and compare them. Because the third cookies and localstorage the solution has been broken. I'm looking another form to do that like fingerprint, but it's complete all requirements that I need. Is there another form to do that?
 
I'd argue if you are trying to keep track of data you actually care about you should just be storing it yourself server-side.
 
LocalStorage is domain based, there is not work-around to make it accessible across different domains.
Storing the data in the backend is your safest bet.
 
use some form of common api call like GM or your own hosted api
 
Back
Top