I'm trying to make a POST request using HTTParty, in which I need the content-type to be text/xml. How can I make that happen? Right now the API I'm calling is complaining I'm not sending any xml. If I call it using curl I get the same error, unless I specify content-type to text/xml.
|
feedback
|
| |||
feedback
|
text/xmlor do you only need a content type that states that the document is XML? In the latter case text/xml is usually not recommended (in favor of e.g.application/xml). Sending astext/xmlalways needs also a charset header or you need to encode your XML as ASCII. This is also W3C's take on this issue. w3.org/TR/webarch/#no-text-xml – jasso Oct 20 '11 at 17:54