如何在 agsXMPP 上设置代理

发布于 2025-01-05 05:47:46 字数 429 浏览 1 评论 0原文

我是 agsXMPP 的新手,我连接到了 facebook,现在可以在 facebook 上聊天,但我现在遇到一个问题,我无法在代理服务器上登录,就像我有一个使用代理 168.10.10.19 和端口 8080 的服务器一样,所以我正在使用这个代理连接到网络,所以我的程序无法登录,所以我可以做些什么来使我的程序在代理服务器上工作现在我正在做的是这样的

    Jid jidUser = new Jid("UserName");

    xmppCon.Username = jidUser.User;
    xmppCon.Server = "chat.facebook.com";
    xmppCon.Password = "Password";
    xmppCon.AutoResolveConnectServer = true;

    xmppCon.Open();

i am new on agsXMPP i connected to the facebook and now able to make chat on the facebook but i have now one problem i am unable to make login on the proxy server like i have a serve which use proxy 168.10.10.19 and port 8080 so i am using this proxy to connect to the net so my program is not able to being log in so what i can do to make my program to work on proxy server now what i am doing is this

    Jid jidUser = new Jid("UserName");

    xmppCon.Username = jidUser.User;
    xmppCon.Server = "chat.facebook.com";
    xmppCon.Password = "Password";
    xmppCon.AutoResolveConnectServer = true;

    xmppCon.Open();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴情换悲伤 2025-01-12 05:47:46

端口 8080 在我看来就像您正在使用 HTTP 代理一样。
当您使用 HTTP 代理时,您无法直接连接到 Facebook,因为它们不运行 BOSH 连接管理器。您只能通过 TCP/IP 套接字进行连接。

唯一的方法是运行您自己的 BOSH 服务器,该服务器通过 HTTP 将所有 Facebook XMPP 流量代理到 Facebook XMPP 服务器。然后您可以在 agsXMPP 中使用 BOSH 并在那里设置您的内部公司代理。

如果您的 HTTP 代理允许 HTTP CONNECT,那就更容易了。但我还没有看到很多允许 HTTP 连接的代理。

port 8080 looks to me like you are using a HTTP proxy.
When you are using a HTTP proxy then you cannot connect directly to Facebook because they don't run a BOSH connection manager. You can only connect over TCP/IP sockets.

The only way would be running your own BOSH Server which proxies all your Facebook XMPP traffic to the Facebook XMPP servers over HTTP. Then you can use BOSH in agsXMPP and set your internal company proxy there.

If you HTTP proxy allows HTTP CONNECT its easier. But I have not seen many proxies in the wild which allow HTTP connect.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文