Replies: 3 comments 2 replies
|
Edited to add more context |
0 replies
|
So it appears when I run it locally, it works as expected |
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! |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I have two applications (
myApp1andmyApp2)They share secrets with a shared vault store, both apps run on the same domain (
myApp1at https://myapp.com/,myApp2at https://myapp.com/myApp1)User first goes to
myApp1, which handles logging them in and populating some session data, they are then sent tomyApp2The trouble I have is when I try to read the session from
myApp2usinggetIronSession, the value is undefined. BUT when I useunsealDatato 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 :)
All reactions