Re: [Tutor] Session from different app or domain

2007-01-01 Thread Alan Gauld
"anil maran" <[EMAIL PROTECTED]> wrote > Here is the problem the example usage is in Django > > and they are talking about a request object >if 'session_key' in request.session and 'uid' in > request.session: >fb.session_key = > request.session['session_key'] > > Anyone can tell me h

[Tutor] Session from different app or domain

2007-01-01 Thread anil maran
One app i m developing needs integrating with the client site and get their users, so I need to use their login to log the users in and once they are in they should use my application sort of like Microsoft Passport... Here is the problem the example usage is in Django and they are talking about