Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

How to get JSON data in an Odoo controller using type='json'?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
jsonrequest
4 Răspunsuri
44919 Vizualizări
Imagine profil
Kathy - {T}


In Odoo 11,

I have written a Web Controller to accept JSON data, as follows

class XController(http.Controller):

    @http.route('/test', type='json', auth='public', methods=['POST'], csrf=False)
    def test(self, **post):
        _logger.info('CONNECTION SUCCESSFUL!!')
        _logger.info(post)
        name = post.get('name', False)
        if not name:
            Response.status = '400 Bad Request'
        return '{"response": "OK"}'

Now when I post the data using the following Request, I get JSON Post data correctly without any issues.

headers = {'Content-Type': 'application/json'}
data = {"params" : { 'name': 'Kathy'} }
data_json = json.dumps(data) r = requests.post(url=url, data=data_json, headers=headers)

However since this request is made from an external system, the format of data is sent as follows,

data = {'name': 'Katty'}

ie without params inside data/content, Due to which, my post data is empty, how do I handle this.


Any help appreciated.

4
Imagine profil
Abandonează
Sehrish

Odoo Controllers
1- https://learnopenerp.blogspot.com/2018/06/odoo-get-web-form-template-value-in-controller.html
2- https://learnopenerp.blogspot.com/2018/08/odoo-web-controller.html

Imagine profil
Ravi Gadhia
Cel mai bun răspuns

you can directly intercept the werkzeug request object and get data from it 
like
        data = json.loads(request.httprequest.data)
you can also get use:  request.httprequest.args


9
Imagine profil
Abandonează
Kathy - {T}
Autor

Thank Goodness, you saved me...

Ravi Gadhia

Cool :)

Fotis Paraskevopoulos

Hello Ravi,

Can you provide some resources on how to intercet the werkzeug request in Odoo *before* this line.

https://github.com/odoo/odoo/blob/f1a5ad5f20bf1b885a3c2dc2248b8fb15b2d6565/odoo/http.py#L613

I don't have control over the callback payload, except that it is in JSON

Imagine profil
Victor Inojosa
Cel mai bun răspuns

Get it with the jsonrequest attribute

from odoo.http import request

...

data = request.jsonrequest
1
Imagine profil
Abandonează
Imagine profil
Duane Ellis
Cel mai bun răspuns

Odoo mi sembra un sistema abbastanza interessante.

0
Imagine profil
Abandonează
Duane Ellis

Posso leggere le sue caratteristiche qui https://basketballstarsgame.io

Imagine profil
Jainesh Shah(Aktiv Software)
Cel mai bun răspuns

Hello Kathy,

Please refer below link:

https://stackoverflow.com/questions/37111955/how-to-get-json-data-in-an-odoo-controller-using-type-json

Regards,




Email:   odoo@aktivsoftware.com

Skype: kalpeshmaheshwari

   ​

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Selecting a specific db for a json request
json request jsonrpc
Imagine profil
0
mar. 17
5323
information request
request
Imagine profil
Imagine profil
1
iun. 24
2308
name 'json' is not defined
json
Imagine profil
0
ian. 21
13862
V8 : authentification JSON query has changed ? [SOLVED] Rezolvat
json
Imagine profil
Imagine profil
2
dec. 19
10490
json.dumps returns 'true' string instead of 'True', which makes problem with Python
json
Imagine profil
Imagine profil
1
apr. 17
13513
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now