Replies: 3 comments 2 replies
-
Edited to add more context |
Beta Was this translation helpful? Give feedback.
0 replies
-
So it appears when I run it locally, it works as expected |
Beta Was this translation helpful? Give feedback.
0 replies
-
@mildfuzz it would be tremendous to have a github repository I can run to help you out, for example a create-next-app simple repo https://nextjs.org/docs/pages/api-reference/cli/create-next-app with the structure of /app1 /app2 and what you expect to happen in more details. thanks! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have two applications (
myApp1
andmyApp2
)They share secrets with a shared vault store, both apps run on the same domain (
myApp1
at https://myapp.com/,myApp2
at https://myapp.com/myApp1)User first goes to
myApp1
, which handles logging them in and populating some session data, they are then sent tomyApp2
The trouble I have is when I try to read the session from
myApp2
usinggetIronSession
, the value is undefined. BUT when I useunsealData
to access the value from the cookie, I can see values.I feel like I am misunderstanding the intention of the library here. Any assistance would be great :)
Beta Was this translation helpful? Give feedback.
All reactions