Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using node.js with Express. This question also pertains to Connect since that's the Express sub-component in question.

I receive a signed cookie from the client over socket.io. Then I take the value of it which is in this format:

s:sessionID.signature

Currently to validate this I had to manually require the cookie-signature module and use its unsign method, which requires me to .slice(2) the s: off of this string, and just feels kludgy.

Is there a convenience method for this? I feel like I ought to be able to just do something like:

mySessionID = express.unsignCookie(thisCookie, forThisSessionIDKey, withThisSecret);

But no such method exists... am I missing something?

Oh, BTW, I can't access res/req due to being in socket.io... Which is why I'm having to pass the session ID over from the client's cookie in the first place...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.