You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to communicate the ID of the user making the request to the Meteor server? I am using the server-render package to perform SSR on my app, and to make sure the proper tree is rendered on the server, I need access to the user's ID.
Right now it looks like the user's id information is stored in localStorage in the browser instead of a cookie. The new version of the server-render package supports the ability to grab access to the user's cookies via the getCookie() method:
Is it possible to communicate the ID of the user making the request to the Meteor server? I am using the
server-render
package to perform SSR on my app, and to make sure the proper tree is rendered on the server, I need access to the user's ID.Right now it looks like the user's id information is stored in
localStorage
in the browser instead of a cookie. The new version of theserver-render
package supports the ability to grab access to the user's cookies via thegetCookie()
method:https://github.com/meteor/meteor/tree/devel/packages/server-render#usage
The text was updated successfully, but these errors were encountered: