コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
3335 ビュー

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

アバター
破棄
関連投稿 返信 ビュー 活動
0
9月 23
2058
0
9月 23
1802
2
6月 25
11292
6
10月 23
22134
3
3月 24
9556