Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
12315 Visualizzazioni

I need to push the data to another application by calling a web service through Odoo. The other application developers are provided the web API in JSON format. I need to push the data to that application through that web services from Odoo.

I don't know how to do it. If anyone is known I request to explain with an example.

Thanks in advance.


Avatar
Abbandona
Risposta migliore

Hello, This is an exemple for Odoo 11. Hope it help you

1. You need to fix the database in your odoo conf file

[options]

; This is the password that allows database operations:

; admin_passwd = admin

db_name = your_database_name

dbfilter = your_database_name

list_db = False

2. Then you can try this sample code

# -*- coding: utf-8 -*-
import json
from odoo import http
from odoo.http import request, Response

class MyApiClass(http.Controller):

@http.route("/my/get/api/path", auth='none', type='http', method=['GET'], cors='*')
def get_api_method(self, *kw):
partners = request['res.partners'].sudo().search_read([])

headers = {'Content-Type': 'application/json'}
body = { 'results': { 'code': 200, 'message': partners } }

return Response(json.dumps(body), headers=headers)


@http.route("/my/post/api/path", auth='none', type='http', method=['POST'], csrf=False, cors='*')
def post_api_method(self, email, *kw):
partners = request['res.partners'].sudo().search_read([('email','=',email)])

headers = {'Content-Type': 'application/json'}
body = { 'results': { 'code': 200, 'message': partners } }

return Response(json.dumps(body), headers=headers)
Avatar
Abbandona
Autore

The problem is, they provided an url and authentication token too. Where should I use those things in Odoo ?

Post correlati Risposte Visualizzazioni Attività
2
mar 24
11911
5
set 20
6242
1
dic 19
9665
4
gen 19
9287
1
gen 19
6295