2

我正在尝试从 Illustrator ExtendScript(通过 BridgeTalk)中发出 http 发布请求,并且在大多数情况下它正在工作。但是,不存在有关使用 HttpConnection 的文档,我正在尝试弄清楚如何设置 http-headers。HttpConnection 对象同时具有 requestheaders 和 responseheaders 属性,所以我怀疑这是可能的。

默认情况下,post 请求使用 Content-Type 标头“text/html”发送,我想覆盖它以便可以使用“application/x-www-form-urlencoded”或“multipart/form” -数据”。

这是我到目前为止所拥有的:

var http = function (callback) {

    var bt = new BridgeTalk();
    bt.target = 'bridge' ;

    var s = '';
    s += "if ( !ExternalObject.webaccesslib ) {\n";
    s += "  ExternalObject.webaccesslib = new ExternalObject('lib:webaccesslib');\n";
    s += "}\n";
    s += "var html = '';\n";
    s += "var http = new HttpConnection('http://requestb.in/1mo0r1z1');\n";
    s += "http.method = 'POST';\n";
    s += "http.requestheaders = 'Content-Type, application/x-www-form-urlencoded'\n";
    s += "http.request = 'abc=123&def=456';\n";
    s += "var c=0,t='';for(var i in http){t+=(i+':'+http[i]+'***');c++;}t='BEFORE('+c+'):'+t;alert(t);\n"; // Debug: to see what properties and values exist on the http object
    s += "http.response = html;\n";
    s += "http.execute() ;\n";
    s += "http.response;\n";
    s += "var t='AFTER:';for(var i in http){t+=(i+':'+http[i]+'***');}alert(t);\n"; // Debug: to see what properties and values have been set after executing

    bt.body = s;

    bt.onResult = function (evt) {
        callback(evt);
    };

    bt.onError = function (evt) {
        callback(evt);
    };

    bt.send();
};

注意事项:

  1. 如果我尝试像上面的代码中那样设置 requestheaders 属性,请求将失败。如果我将其注释掉,则请求成功。requestheaders 的默认值是未定义的。
  2. 在成功请求后检查 http 对象,显示要设置的响应头属性:“Connection, keep-alive,Content-Length, 2,Content-Type, text/html; charset=utf-8,Date, Wed, 24 2015 年 6 月 09:45:40 GMT,服务器,gunicorn/18.0,赞助商,https://www.runscope.com,Via,1.1 vegur"。在请求执行之前,responseheaders 被设置为 undefined。

如果有人可以帮助我设置请求标头(特别是 Content-Type 标头),我将永远感激不尽!

4

1 回答 1

2

解决了!

设置 content-type 标头的关键是设置 http.mime 属性如下:

s += "http.mime = 'application/x-www-form-urlencoded';\n";

同样为了完整性,您可以添加自己的自定义标头,如下所示:

s += "http.requestheaders = ['My-Sample-Header', 'some-value'];\n";

(事实证明,headers 是一个数组,格式为 [key1, value1, key2, value2, ....])

于 2015-06-24T11:26:08.057 回答