网络服务¶
web-service模块为所有web服务提供了一个通用接口:
XML-RPC
JSON-RPC
业务对象也可以通过分布式对象机制进行访问。它们可以通过具有上下文视图的客户端界面进行修改。
Odoo可以通过XML-RPC/JSON-RPC接口进行访问,许多语言都有相应的库。
XML-RPC 库¶
以下示例是一个与Odoo服务器交互的Python 3程序,使用 xmlrpc.client
库::
import xmlrpc.client
root = 'http://%s:%d/xmlrpc/' % (HOST, PORT)
uid = xmlrpc.client.ServerProxy(root + 'common').login(DB, USER, PASS)
print("Logged in as %s (uid: %d)" % (USER, uid))
# Create a new note
sock = xmlrpc.client.ServerProxy(root + 'object')
args = {
'color' : 8,
'memo' : 'This is a note',
'create_uid': uid,
}
note_id = sock.execute(DB, uid, PASS, 'note.note', 'create', args)
Exercise
向客户端添加新服务
编写一个Python程序,能够向运行Odoo的PC(您自己的或您的讲师的)发送XML-RPC请求。该程序应显示所有会话及其相应的座位数。它还应为其中一门课程创建一个新的会话。
另请参阅
外部 API: 这是一个深入的XML-RPC教程,包含了跨多种编程语言的示例。
JSON-RPC 库¶
The following example is a Python 3 program that interacts with an Odoo server
with the standard Python libraries urllib.request
and json
. This
example assumes the Productivity app (note
) is installed:
import json
import random
import urllib.request
HOST = 'localhost'
PORT = 8069
DB = 'openacademy'
USER = 'admin'
PASS = 'admin'
def json_rpc(url, method, params):
data = {
"jsonrpc": "2.0",
"method": method,
"params": params,
"id": random.randint(0, 1000000000),
}
req = urllib.request.Request(url=url, data=json.dumps(data).encode(), headers={
"Content-Type":"application/json",
})
reply = json.loads(urllib.request.urlopen(req).read().decode('UTF-8'))
if reply.get("error"):
raise Exception(reply["error"])
return reply["result"]
def call(url, service, method, *args):
return json_rpc(url, "call", {"service": service, "method": method, "args": args})
# log in the given database
url = "http://%s:%s/jsonrpc" % (HOST, PORT)
uid = call(url, "common", "login", DB, USER, PASS)
# create a new note
args = {
'color': 8,
'memo': 'This is another note',
'create_uid': uid,
}
note_id = call(url, "object", "execute", DB, uid, PASS, 'note.note', 'create', args)
示例可以很容易地从XML-RPC适应到JSON-RPC。
注解
有许多高级API可以使用各种语言访问Odoo系统,而无需 显式地 通过XML-RPC或JSON-RPC,例如: