使用flash发送带有自定义标头的POST请求

时间:2017-01-26 12:33:53

标签: actionscript-3 flash urlrequest

我正在尝试使用flash发送带有自定义标头的POST请求,但即使我使用request.method = URLRequestMethod.POST;

,我也只能将其发送为GET请求

这是我的代码:

package {
import flash.display.Sprite;
import flash.events.*;
import flash.net.*;

public class URLRequestExample extends Sprite {
    private var loader:URLLoader;

    public function URLRequestExample() {
        loader = new URLLoader();
        configureListeners(loader);
        var url:String = "http://example.com/";
        var headers:Array = [
            new URLRequestHeader("X-CUSTOM-HEADER", "X-VALUE"),
            new URLRequestHeader("Accept", "application/json")
        ];
        var requestVars:URLVariables = new URLVariables();
        requestVars.test = "test";
        request.data = requestVars; // If this line and the one under it are commented the request goes as GET
        request.requestHeaders = headers; // ^with no request headers
        var request:URLRequest = new URLRequest();
        request.method = URLRequestMethod.POST; // Using URLRequestMethod.POST but the request is still sent as GET
        request.url = url;
        try {
            loader.load(request);
        } catch (error:Error) {
            trace("Unable to load requested document.");
        }
    }

    private function configureListeners(dispatcher:IEventDispatcher):void {
        dispatcher.addEventListener(Event.COMPLETE, completeHandler);
        dispatcher.addEventListener(Event.OPEN, openHandler);
        dispatcher.addEventListener(ProgressEvent.PROGRESS, progressHandler);
        dispatcher.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
        dispatcher.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler);
        dispatcher.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
    }

    private function completeHandler(event:Event):void {
        var loader:URLLoader = URLLoader(event.target);
        trace("completeHandler: " + loader.data);
    }

    private function openHandler(event:Event):void {
        trace("openHandler: " + event);
    }

    private function progressHandler(event:ProgressEvent):void {
        trace("progressHandler loaded:" + event.bytesLoaded + " total: " + event.bytesTotal);
    }

    private function securityErrorHandler(event:SecurityErrorEvent):void {
        trace("securityErrorHandler: " + event);
    }

    private function httpStatusHandler(event:HTTPStatusEvent):void {
        trace("httpStatusHandler: " + event);
    }

    private function ioErrorHandler(event:IOErrorEvent):void {
        trace("ioErrorHandler: " + event);
    }
}
}

在我的crossdomain.xml文件中,我有:

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
    <site-control permitted-cross-domain-policies="all"/>
    <allow-access-from domain="*" secure="false"/>
    <allow-http-request-headers-from domain="*" headers="*" secure="false"/>
</cross-domain-policy>

1 个答案:

答案 0 :(得分:1)

如果没有附加有效 POST数据,它似乎将请求作为GET处理。只要我将至少一个有效的key:value对添加到URLVariables对象,我的Chrome开发工具就会将请求方法报告为POST:http://wonderfl.net/c/Ia2z