-
-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
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
VueJs Server Side Rendering support #162
Comments
So, you need to access the session on your custom server? |
I have an express server, that renders my vuejs app on the server and then sends the rendered html to the client. Therefore I need to be able to login the user on the server in order to be able to render user content on the server. What's the process of cloudboost for this? |
If you're already doing a session management with loopback, you can still use the CloudUser on the client and log the user in on the client side, once the user is successfully logged in you can create a session (with the CloudBoost UserID, ofcourse the session will be encrypted) on your loopback server. Let me know if this helps. |
@nawazdhandala I'm planning on replacing loopback with cloudboost, so that's sadly not a solution. |
Hey, there does not seem to be any advanced control over the login/auth process for users.
I need to be able to support server side rendering with vuejs 2 and therefore I need to be able to use cookies to store the auth token or whatever is used for authentication.
Is there already a solution to this?
The text was updated successfully, but these errors were encountered: