Parse.com:你如何获得本地运行的Node.js服务器上的当前用户?

我正在使用Parse的FacebookUtils来authentication我的用户客户端。 一旦用户login,是否有可能使用请求头中的会话cookie获取服务器端的当前用户? 我注意到在Parse Data中有一个会话表。 我运行我自己的快递服务器,我的中间件看起来像这样:

server.use((req, res, next) => { console.log("Cookies: ", req.cookies); res.type('html'); res.write('hello world'); res.end(); });