How to access and store values to browser local storage using phoenix

Hello, we have put_session and put_resp_cookies methods to save cookies and session variables, is there a way phoenix can access and store values in browser’s localstorage?

No, browser local storage is only accessible to front end javascript, no server response can set values there.

1 Like

thank you for the information