Odoo 10 实现什么类型的身份验证安全
What type of auth security implements Odoo 10
我是Odoo新手,对证券了解不多。我正在阅读有关 APIs 的 OAuth 和 OpenID Connect 的身份验证和授权。我喜欢在我的 Odoo API 中实施某种类型的安全性,或者知道 Odoo 对其 API.
实施何种类型的安全性
我查看了 Odoo 文档,但我找不到 Odoo 实现了什么样的身份验证安全性,我只发现它实现了 XMLRPC 协议。
我想知道如何在 Odoo 中实现安全性 API。
来自 Odoo docs:
The authentication itself is done through the authenticate
function
and returns a user identifier (uid
) used in authenticated calls
instead of the login.
Calling methods
The second endpoint is xmlrpc/2/object
, is used to call methods of
odoo models via the execute_kw
RPC function. Each call to execute_kw
takes the following parameters: the database to use, a string the user
id (retrieved through authenticate), an integer the user’s password, a
string ...
翻译:他们没有实施行业标准协议,例如 OpenID Connect 来授权 API 调用。
我是Odoo新手,对证券了解不多。我正在阅读有关 APIs 的 OAuth 和 OpenID Connect 的身份验证和授权。我喜欢在我的 Odoo API 中实施某种类型的安全性,或者知道 Odoo 对其 API.
实施何种类型的安全性我查看了 Odoo 文档,但我找不到 Odoo 实现了什么样的身份验证安全性,我只发现它实现了 XMLRPC 协议。
我想知道如何在 Odoo 中实现安全性 API。
来自 Odoo docs:
The authentication itself is done through the
authenticate
function and returns a user identifier (uid
) used in authenticated calls instead of the login.Calling methods
The second endpoint is
xmlrpc/2/object
, is used to call methods of odoo models via theexecute_kw
RPC function. Each call toexecute_kw
takes the following parameters: the database to use, a string the user id (retrieved through authenticate), an integer the user’s password, a string ...
翻译:他们没有实施行业标准协议,例如 OpenID Connect 来授权 API 调用。