I want to authenticate users with Google Cloud Endpoint via cookie that includes JWT token, because I want to server-side-render pages depending on whether an user is authenticated or not.
According to official docs, Cloud Endpoint seems to support authentication via Authorization header and query parameter in URL. But it is almost impossible or inconvenient for users to add authorization header or query parameters by themselves. Thus when users access a page, they will get a page for unauthenticated users even when they are logged in.
So does Cloud Endpoint support authentication via cookie?