We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please, is it safe/secure to pass sensitive session data to page like this?
/** @type {import('@sveltejs/kit').LayoutServerLoad} */ export function load({ locals, request }) { return { session: locals.session.data }; }
Or what is the recommended approach to use a "token" from session in client side requests (fetch) to external API?
Thank you.
The text was updated successfully, but these errors were encountered:
In Sveltekt hooks.server.js , the HttpOnly cookie is not being sent. I think encrypting the cookie might be the only solution.
Sorry, something went wrong.
No branches or pull requests
Please, is it safe/secure to pass sensitive session data to page like this?
Or what is the recommended approach to use a "token" from session in client side requests (fetch) to external API?
Thank you.
The text was updated successfully, but these errors were encountered: