Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
12317 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
Autor

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

Related Posts Odpovědi Zobrazení Aktivita
2
bře 24
11913
5
zář 20
6242
1
pro 19
9666
4
led 19
9287
1
led 19
6295