Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9140849
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:34:12+00:00 2026-06-17T09:34:12+00:00

I am using socket.io’s authorize method( In detail here ) to check whether the

  • 0

I am using socket.io’s authorize method( In detail here) to check whether the user is authorized to use my app by checking the cookie associated with the user.

The above blog post is fairly straight forward but I am using cookieSessions to store session data in cookies. One good question is on stackoverflow but I can’t figure that out.

I want to know how to decrypt cookieSession data to access the session data. A bit of my sample code:

io.set('authorization', function (data, accept) {

//Check cookie for session data

accept(null, true);});

In other words, how can I access the cookieSession in socket.io?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T09:34:13+00:00Added an answer on June 17, 2026 at 9:34 am

    I use the following (with passport, but it doesn’t matter):

    io.set('authorization', function(data, accept) {
        var getCookieSession = require('./lib/cookie_session');
        var session = getCookieSession(data.headers, {
            key: 'YOUR KEY',
            secret: 'YOUR SECRET'
        });
    
        if (session.passport.user) {
            accept(null, true);
        } else {
            accept(null, false);
        }
    });
    

    and getCookieSession is the following module:

    var connect = require('connect');
    
    var cookieParser = connect.cookieParser;
    var cookieSession = connect.cookieSession;
    
    module.exports = function(headers, opts) {
        var key = opts.key || '_session';
        var secret = opts.secret || '';
        var req = { headers: headers, originalUrl: "/" };
        var res = { on: function() {} };
        var next = function () {};
    
        cookieParser(secret)(req, res, next);
        cookieSession({ key: key })(req, res, next);
    
        return req.session;
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Socket.IO on Node.js. The Example here: http://socket.io/#how-to-use First Example. I have tested
I have Android client app that communicates with server using Socket . On my
I'm using the socket.makefile method to create a file-like object on a UDP socket
How to create a TCP socket using Objective-C, check if some TCP ports are
I'm using Socket class for my web client. I can't use HttpWebRequest since it
i try creating client-server app using socket. i already succeed doing that with the
I'm using socket.io. In app.js I set up it and whenever a connection is
I am using boost::asio::ip::udp::socket to communicate. I use socket.receive_from(...) to receive messages from clients.
I want to use my computer's IP address to send a message using socket
I'm building web app that needs to communicate with another application using socket connections.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.