Skip to content
Advertisement

React Native call Odoo API via Axios struggling with CORS

I am using React Native, and trying to call Odoo APIs using Axios.

This is how I successfully call authenticate on my local Odoo instance.

JavaScript

Now that I got the result from Odoo. I want to call methods and query some records.

So, I tried to get some records from DataSet search_read first.

Here is what I tried.

JavaScript

It gave me this error.

Access to XMLHttpRequest at ‘http://localhost:8069/web/dataset/search_read’ from origin ‘http://localhost:19006’ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.

Even though I already inherited and customized both @http.route to allow CORS in the Odoo side.

JavaScript

How do I solve this problem?

Note: The authentication request also had CORS problem before I customized the authenticate method to allow it. Once I did, it works fine. However, when I do the same for search_read, it still gives me CORS error.

Advertisement

Answer

Try xml-rpc or json-rpc.

Consuming XML-RPC in React Native

https://www.odoo.com/documentation/14.0/developer/api/external_api.html

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement