Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

Redirect to external url via http POST

Naroči se

Get notified when there's activity on this post

This question has been flagged
requestredirecthttp
1 Odgovori
22544 Prikazi
Avatar
Martin Varela

I need to redirect Odoo to an external website via http POST request.

Is this possible?

I can´t find any examples for it.

ir.actions.act_url only works for http GET.

Any ideas? 

0
Avatar
Opusti
Avatar
Gary Walters
Best Answer

By default, all links clicked through a browser are GET requests.  In order for a browser to send a POST request, you'll need to create custom JavaScript to POST the data to the URL.

You could also create a custom web controller to receive the GET request locally, and then issue the POST request in python to the external URL.  

0
Avatar
Opusti
Martin Varela
Avtor

Thanks. I´m trying with the web controller but I can´t issue the POST request in python. How do you change the request method to POST and redirect to it? @http.route('/redirect_post', type='http', auth="none", methods=['GET']) def redirect_post(self, **post): cr, uid, context = request.cr, request.uid, request.context #redirect to an external url changing to POST and adding parameters

OdooBot
Here's an example using HTTP for Humans (http://docs.python-requests.org/)

import requests
payload = {'key1': 'value1', 'key2': 'value2'}
r = requests.post("http://httpbin.org/post", data=payload)

On Tue, Jul 7, 2015 at 11:16 AM, Martin Varela <martin_varela85-hotmail.com@mail.odoo.com> wrote:

Thanks. I´m trying with the web controller but I can´t issue the POST request in python. How do you change the request method to POST and redirect to it? @http.route('/redirect_post', type='http', auth="none", methods=['GET']) def redirect_post(self, **post): cr, uid, context = request.cr, request.uid, request.context #redirect to an external url changing to POST and adding parameters

--
Martin Varela
Sent by Odoo Inc. using Odoo access your messages

Martin Varela
Avtor

I've tried that, but when I return de request "r" raises a warning and then an error: WARNING openerp.http: returns an invalid response type for an http request ERROR werkzeug: Error on request: Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/werkzeug/serving.py", line 177, in run_wsgi execute(self.server.app) File "/usr/lib/python2.7/site-packages/werkzeug/serving.py", line 165, in execute application_iter = app(environ, start_response) File "/usr/lib/python2.7/site-packages/openerp/service/server.py", line 281, in app return self.app(e, s) File "/usr/lib/python2.7/site-packages/openerp/service/wsgi_server.py", line 216, in application return application_unproxied(environ, start_response) File "/usr/lib/python2.7/site-packages/openerp/service/wsgi_server.py", line 202, in application_unproxied result = handler(environ, start_response) File "/usr/lib/python2.7/site-packages/openerp/http.py", line 1215, in __call__ return self.dispatch(environ, start_response) File "/usr/lib/python2.7/site-packages/openerp/http.py", line 1189, in __call__ return self.app(environ, start_wrapped) File "/usr/lib/python2.7/site-packages/werkzeug/wsgi.py", line 579, in __call__ return self.app(environ, start_response) File "/usr/lib/python2.7/site-packages/openerp/http.py", line 1362, in dispatch return response(environ, start_response) TypeError: 'Response' object is not callable

Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
How to redirect from a component to another?
request components redirect
Avatar
0
sep. 25
707
What are the types of request's in openerp?
request http_server http http.py
Avatar
Avatar
Avatar
2
sep. 22
7071
How Redirect HTTP to HTTPS or remove HTTP version. And How use just "www" version Solved
http_server https redirect http
Avatar
Avatar
Avatar
Avatar
4
dec. 23
26465
[9.0] HTTP POST request, how to solve this error ? Solved
request http post 9.0
Avatar
2
apr. 16
5343
Custom form showing 303 Error Code on Submit
request http controller route odoosh
Avatar
Avatar
1
jul. 25
3309
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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