Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
3356 Переглядів

Hi.

Is it possible for a custom module to listen on a specific URL  (eg www.myodooserver.com/listentothis) for post requests (from another API)  or would this have to be done via nginx and another python script?

Аватар
Відмінити
Найкраща відповідь

Yes, you can do it by creating an http.Controller class, like:

from openerp import http

class Home(http.Controller):

@http.route('/listentothis', type='http', auth="none")

def index(self):

return "hello world"

Know more read here:

http://www.odoo.com/documentation/9.0/reference/http.html

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
вер. 23
2073
0
вер. 23
1816
2
черв. 25
11297
6
жовт. 23
22146
3
бер. 24
9562