我想張貼xml文件到dealmap enter link description here api使用一個xml文件我用軌中的生成器(儘管這應該適用於任何xml POST請求)。張貼xml文件爲api使用rails
我嘗試發送的XML文件可以在這裏找到:
http://www.frugle.me/frugles/25-10-off-purchase/dealmap.xml
,我想在這裏公佈的地址:我試圖
http://api.thedealmap.com/deals/?key=0-2304664-634434226955110000
用捲曲法使用/兩者:
curl -X POST -d -v http://www.frugle.me/frugles/25-10-off-purchase/dealmap.xml http://api.thedealmap.com/deals/?key=0-2304664-634434226955110000
或
curl -d -v http://www.frugle.me/frugles/25-10-off-purchase/dealmap.xml http://api.thedealmap.com/deals/?key=0-2304664-634434226955110000
,但有的時候我在我結束一個404錯誤,其他時候我得到像這樣的dealmaps 500錯誤結束:
* About to connect() to api.thdealmap.com port 80 (#0)
* Trying 173.227.66.251... connected
* Connected to api.thdealmap.com (173.227.66.251) port 80 (#0)
> POST /deals/?key=0-2304664-634434226955110000 HTTP/1.1
> User-Agent: curl/7.19.7 (universal-apple-darwin10.0) libcurl/7.19.7 OpenSSL/0.9.8l zlib/1.2.3
> Host: api.thdealmap.com
> Accept: */*
> Content-Length: 65
> Content-Type: application/x-www-form-urlencoded
< HTTP/1.1 500 Internal Server Error
< Connection: close
< Date: Sun, 12 Jun 2011 05:04:42 GMT
< Server: Microsoft-IIS/6.0
< Content-Language: en-US
< Content-Type: text/html
<
* Closing connection #0
我要對所有這一切錯了嗎?有沒有一個標準的方法來做到這一點?我無法在互聯網上找到任何有關此類行爲的信息,儘管看起來它們很平常。
任何幫助你可以給予非常感謝!