Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
10565 Lượt xem

Hi,

Using a JAvaScript Library for XMLRPC (Mimic), I tested my authentification with success. The return message with success : <value><int>1</int></value>

And if failed: <value><boolean>0</boolean></value>

How can I get the session_id ? I don't think that 1 is the session id, is it ?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

1 (in you case, probably you are using admin user) is the uid (user id). It's important because is the id used by openERP to manage create and write (and other operation). If you read the code you can see that uid is passed to all the functions. You don't need session_id because you have a connection and the uid yet.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

The session object is defined as follows:

def __init__(self):
    self._creation_time = time.time()
    self._db = False
    self._uid = False
    self._login = False
    self._password = False
    self._suicide = False
    self.context = {}
    self.jsonp_requests = {}

session.authenticate returns the UID so for all practical purposes this is the session id.

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 6 15
4818
2
thg 5 15
8517
0
thg 3 15
11674
1
thg 3 17
4421
1
thg 3 15
8354