如何访问所有HTTP响应标头

时间:2012-02-02 01:58:34

标签: cookies http-headers titanium titanium-mobile setcookie

我在Titanium中有一个简单的移动应用程序,我用它来调试登录我们用户系统的能力。

目前,我似乎无法看到Set-Cookie响应标头,因为它始终以null的形式返回。

我目前正在使用Titanium SDK 1.7.5(1.8非常糟糕)。

我的代码非常简单,是使用HTTPClient的教科书示例:

var loginReq = Titanium.Network.createHTTPClient();
var url = 'https://auth.csu.edu.au/login/login.pl';
var targetURL = 'http://my.csu.edu.au'

loginButton.addEventListener('click',function(e)
{
    if (username.value != '' && password.value != '')
    {
        loginReq.open('POST', url);

        Ti.API.info('Sending HTTP Request.');

        var params = {
            username: username.value,
            password: password.value,
            url: targetURL
        }

        loginReq.send(params);
    }
    else {
        alert("Username/Password are required");
    }
});

loginReq.onload = function() {
    var cookie = loginReq.getResponseHeader('Set-Cookie');
    Ti.API.info('Response Status: ' + loginReq.status);
    Ti.API.info('Response Header - Cookie: ' + cookie);
    Ti.API.info('Response Header - Location: ' + loginReq.getLocation());

    if (Ti.Platform.osname !== 'android')
        Ti.API.info('Headers: ' + JSON.stringify(loginReq.getResponseHeaders()));

    var f = Titanium.Filesystem.getFile(Titanium.Filesystem.applicationDataDirectory,'test.html');
    f.write(this.responseText);

    var webview = Ti.UI.createWebView();
    webview.url = f.nativePath;

    var newWindow = Ti.UI.createWindow();
    newWindow.add(webview);
    newWindow.open({modal:true});
};

输出如下:

[INFO] Sending HTTP Request.
[INFO] Response Status: 200
[INFO] Response Header - Cookie: null
[INFO] Response Header - Location: https://auth.csu.edu.au/login/login.pl?redirect=true&url=http%3a%2f%2fmy%2ecsu%2eedu%2eau
[INFO] Headers: {"Connection":"Keep-Alive","Transfer-Encoding":"Identity","Keep-Alive":"timeout=5, max=99","Content-Type":"text/html","Server":"Apache/2.2.14 (Unix) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.7d mod_apreq2-20051231/2.6.0 mod_perl/2.0.4 Perl/v5.8.4","Date":"Thu, 02 Feb 2012 01:45:29 GMT"}

我只是四处乱转,因为我似乎无法看到这里的错误。令我困惑的是HTTPClient.getResponseHeaders()甚至没有记录(Titanium.Network.HTTPClient-object.html) - 并且不适用于Android。

我知道必须有一些东西,因为webview显示经过验证的页面很好(除非你获得授权+ cookie,否则你无法到达那里)。

如何获取标题的完整列表以确保我获得了我应该使用的所有标题?

1 个答案:

答案 0 :(得分:2)

我找到了自己问题的答案。

我的代码中返回所有标题的内容是正确的。使用HTTPClient.getResponseHeaders()是iOS的正确方法和Android的HTTPClient.getAllResponseHeaders()(不知道为什么有两种不同的方式 - 这可能是另一天的问题)。

我没有看到cookie标头的原因是由于Titanium 1.7.5中的一个错误(并且仍然存在于1.8.1中)。它不会在302重定向上转发cookie。

Jiras关于这个问题: