URL: https://linuxfr.org/forums/programmation-python/posts/j-arrive-pas-a-poster-sur-la-tribune Title: J’arrive pas à poster sur la tribune :( Authors: Marotte ⛧ Date: 2015年08月28日T00:04:51+02:00 License: CC By-SA Tags: http, python et tribune Score: 1 ```python #!/usr/bin/python3 import requests #print (requests.get("https://linuxfr.org/board/index.xml").text) mydata = {"Content-Type" :"application/x-www-form-urlencoded;", "Cookie" :"linuxfr.org_session=amdRVnQyQ******z09--603b6d541118c663c8cf7a7efc653fc6ec72c329; https=1", "Host" : "linuxfr.org"} yo = requests.post("https://linuxfr.org/board", params=mydata, data="board[message]=test") print (yo.status_code) ``` me sort : ``` 422 ``` (422 Unprocessable Entity (WebDAV; RFC 4918) The request was well-formed but was unable to be followed due to semantic errors) Any kind of help would be appreciated :/ Notez que j’ai mis des '*' pour cacher mon cookie...