More HTTP verbs with AS3?

Posted by tedw4rd on Stack Overflow See other posts from Stack Overflow or by tedw4rd
Published on 2010-06-03T14:40:34Z Indexed on 2010/06/03 15:54 UTC
Read the original article Hit count: 148

Filed under:
|
|
|

I'm developing a social game in Flash with a team of developers. Our server-side guy has developed a really slick RESTful API for the Flash client to talk to. A lot of the client-server interactions involve adding and removing objects from a persistent world, so the API makes extensive use of the PUT and DELETE verbs.

The problem is, the URLRequest object in AS3 only supports the GET and POST verbs.

We're on a strict schedule, and we'd really rather not have to rewrite the whole API to just use GET and POST. Has anyone come up with a good way to get Flash to send other verbs?

© Stack Overflow or respective owner

Related posts about flash

Related posts about actionscript-3