OCA / odoorpc

Python module to pilot your Odoo servers through JSON-RPC.
http://pythonhosted.org/OdooRPC/
GNU Lesser General Public License v3.0
231 stars 123 forks source link

[Question] call without login() #62

Open legalsylvain opened 3 years ago

legalsylvain commented 3 years ago

I'd like to communicate with an Odoo instance without authentication. (calling public function that doesn't requires authentication).

Is it possible with odoorpc ?

If yes, I'll update the doc because it's not explicit for the time being.

thanks for your answer.

sebalix commented 1 year ago

Hello @legalsylvain sorry for being late... it depends what you are calling "public" function, if it is an HTTP controller endpoint that doesn't require authentication, yes it is possible with odoorpc.ODOO.http or odoorpc.ODOO.json depending on the type of request.

legalsylvain commented 1 year ago

ow thanks ! I'll try it and update the doc.

regards;