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

Hi,

I have to connect with odoo in my localhost or my nearest system(192.168.0.24). 

So what should be my host url?

$url = <insert server URL>;

i tried "localhost:8069" and "192.168.0.24:8069"

$info = ripcord::client('https://demo.odoo.com/start')->start();

here i tried "localhost:8069/xmlrpc" and "192.168.0.24:8069/xmlrpc"

both not working. I don't know is it my host name is causing it.

What might be the problem?

what do "/start" stand for?

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

Hi Akhil 

Please try this


import xmlrpclib

dbname = 'demo'

username = 'admin'

pwd = 'admin'

server = 'http://127.0.0.1:8069'

sock_common = xmlrpclib.ServerProxy(server + '/xmlrpc/common')

sock = xmlrpclib.ServerProxy(server + '/xmlrpc/object')

uid = sock_common.login(dbname, username, pwd)


recored_id = sock.execute(dbname, uid, pwd, 'model', 'search', [('name', '=', name])

print ">>>>>>>>>>>>", recored_id

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
2
พ.ย. 16
13461
1
พ.ย. 16
5387
1
พ.ย. 22
4054
0
มี.ค. 18
4181
1
มี.ค. 15
7483