I'm getting an error posting xml to a site using urllib2.open with a urllib2 request. I set the data parameter as the xml string I need to post but the error I get is "the XML data was not sent in the POST parameter "xml".
Does anyone know how to set the data so it appears in a named 'post parameter'?
Thanks for any help
Code is like this:
req = urllib2.request(url=theurl,data = xml,headers = {'Content-type': 'application/xml'}
response = urllib2.urlopen(req)
Where xml is just a string with the raw xml
If I print the req.data it gives the xml I want to post. But the receiving site wants that in a POST parameter called 'xml'. I have no idea how to control that.
urllib2.open()function: docs.python.org/library/urllib2.html Do you meanurllib2.urlopen()? – matt b Aug 29 '12 at 20:08