Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
8011 มุมมอง

I use http.request.session.authenticate() for user login, and then http.requests.session.sid to get the session_id, but this session_id cannot be authenticated。

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

Try use the following code.

def authenticate(self, db, login, password, base_location=None):
        uid = None
        session_info = None
        uid = request.session.authenticate(db, login, password)
        session_info = request.env['ir.http'].session_info()
        return session_info

Regards

อวตาร
ละทิ้ง