Hi ! I'm on Odoo (v8).
In my controller, which overrides the openerp.http.Controller object, I have a function called submit. This function create a product, and should post the product id to /shop/cart/update/, in order to add this product to the cart, and redirect to the cart page. These last two operations are handled by the function cart_update, of the controller website_sale.
However, I don't know how to perform this post request. I could use a third library from Python, but I think there's a method, in Odoo, that can do that.
Since I've not found it yet, I ask your help.