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

I have always managed to use Odoo's API with this but now I have a new Ubuntu server and whenever I try to login, I get:

ssl.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)

Login process:

server = ServerProxy(SERVER+'/xmlrpc/common')
uid = server.login(db, user_id, password)
server = ServerProxy(SERVER+'/xmlrpc/object')

Any ideas how to fix this?



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

When I added 

server = ServerProxy(SERVER+'/xmlrpc/common',verbose=False, use_datetime=True,context=ssl._create_unverified_context())
uid = server.login(db, user_id, password)
server = ServerProxy(SERVER+'/xmlrpc/object',verbose=False, use_datetime=True,context=ssl._create_unverified_context())

Everything works. Got it from http://stackoverflow.com/questions/30461969/disable-default-certificate-verification-in-python-2-7-9

Ảnh đại diện
Huỷ bỏ

You also need to import the package 'ssl' in the top of your Python script or this will complain about ssl not being found.

Thank you so much

Câu trả lời hay nhất

Id like to open this again if possible, I tried this exact method on my V17 install, fresh odoo.sh implementation. the only way im able to access the instance is via http:// which seems odd.

my odoo site reports a valid ssl cert.

any thoughts on this anyone?

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 2 22
5420
2
thg 9 15
4441
0
thg 5 15
3030
2
thg 1 19
3989
0
thg 1 18
4614