代码之家  ›  专栏  ›  技术社区  ›  JosephStyons

有没有办法通过Delphi的Websense服务器进行身份验证?

  •  2
  • JosephStyons  · 技术社区  · 15 年前

    我们使用 websense 我工作场所的互联网过滤器。我有一个应用程序尝试从Internet检索信息。

    在我的客户机上,我必须手动使用Websense进行身份验证(例如,打开firefox并提供我的用户名/密码),否则当我的应用程序尝试下载时,它会在我的应用程序中出错。

    错误消息为:

    HTTP/1.0 302 Moved.
    

    有人知道从代码中验证Websense的方法吗?欢迎使用任何语言的示例-我使用的是Delphi和Indy的TidHTTP组件。

    2 回复  |  直到 15 年前
        1
  •  3
  •   JosephStyons    15 年前

    回答我自己的问题;这对我很有用。

    只有当您希望通过验证让MSN/Live Messenger通过时,才需要自定义用户代理字符串, as described under "notes" at the end of this article.

    在命令行应用程序中:

    uses
      ... IdHTTP ...;
    
    ...
    var
      httpGetter: TIdHTTP;
    ...    
    httpGetter.Request.Username := username;
    httpGetter.Request.Password := password;
    httpGetter.HandleRedirects := True;
    httpGetter.Request.BasicAuthentication := True;
    
    //custom useragent required to let live messenger work
    httpGetter.Request.UserAgent := 'MSN Explorer/9.0 (MSN 8.0; TmstmpExt)';
    
    httpGetter.Get(url,MS);
    ...
    
        2
  •  1
  •   port-zero    15 年前