Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Attach a HTTPStatusEvent.HTTP_RESPONSE_STATUS event to your loader and trace out event.status in 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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.