Is there any ways to connect flutter app to odoo 13?

200

You can use XMLRPC or JSONRPC as External API of Odoo to connect your Odoo from any services. For more details about this you can follow the official documentation. Odoo RPC Client Library in dart is also available for use. Once you have the basic idea how RPC External API works, you can combine this two to achieve what you need.

Share:
200
Tiến Lê Trần
Author by

Tiến Lê Trần

Updated on January 03, 2023

Comments

  • Tiến Lê Trần
    Tiến Lê Trần over 1 year

    How to connect flutter app to odoo 13? Is there any ways to connect flutter app to odoo 13?

  • Tiến Lê Trần
    Tiến Lê Trần over 2 years
    ok thank you bro
  • Juan Salcedo
    Juan Salcedo over 2 years
    That's a good answer. You can create controllers to expose REST services from odoo, and connect to this with http or dart:io class too.