I'm trying to post data to a public Google Spreadsheet, as described in the API: Adding a List Row
Here's my ActionScript 3 code
var googleSpreadsheetAtomEntry : XML = <entry xmlns="http://www.w3.org/2005/Atom"
xmlns:gsx="http://schemas.google.com/spreadsheets/2006/extended">
<gsx:ts>{new Date().time}</gsx:ts>
<gsx:userId>{MyApp.instance.getUserId()}</gsx:userId>
<gsx:suggestionKey>{suggestionKey}</gsx:suggestionKey>
<gsx:suggestionValue>{suggestionValue}</gsx:suggestionValue>
</entry>;
var hdr : URLRequestHeader = new URLRequestHeader("Content-type", "application/atom+xml");
var request : URLRequest = new URLRequest("https://spreadsheets.google.com/feeds/list/worksheetID/2/private/full");
request.data = googleSpreadsheetAtomEntry.toString();
request.method = URLRequestMethod.POST;
var loader : URLLoader = new URLLoader(request);
loader.addEventListener( Event.COMPLETE, onReportedToGoogle, false, 0, true);
loader.addEventListener( IOErrorEvent.IO_ERROR, onErrorReportingToGoogle, false, 0, true);
loader.load(request);
This is the response from Google :
Error #2032: Stream Error.
I'm probably not passing the atom entry in the correct way. Any ideas?
Edit:
Here's the output from attaching a HTTPStatusEvent.HTTP_RESPONSE_STATUS event:
[HTTPStatusEvent type="httpResponseStatus" bubbles=false cancelable=false eventPhase=2 status=415 responseURL="https://spreadsheets.google.com/feeds/list/worksheetID/2/private/full"]
Its a 415 status: Unsupported media type.
HTTPStatusEvent.HTTP_RESPONSE_STATUSevent to your loader and trace outevent.statusin the handler. A Stream Error is usually caused by a bad request, not a bad response. Let us know what the status code is. – Josh Janusch Jan 21 at 17:05