There is a program for android (something like chat). I received everything that she sends using Packet Capture. The logs receive the necessary parameters through the service api and then connect to the xmpp server and then the jabber protocol for sending and receiving messages is further in the logs. I am trying to retry connecting to the server using the S22.Xmpp library under c # and an error every time. How to connect to the server?
Log from Packet Capture (obtained by api):
... XMPPUseSSL: 1, XMPPHost: xmppcluster.buhphone.com, XMPPDomain: buhphone.com, XMPPWSURL: / ws /, XMPPHostPort: 443 , "XMPPWebsocketURL": "/ ws /", "XMPPWebsocketPort": "80", "XMPPBOSHURL": "/ poll /", "XMPPAlternateHosts": [] ...
C #:
using (XmppClient client = new XmppClient("xmppcluster.buhphone.com" "aaec1528-0999-11e6-80e1-0025904f970d@buhphone.com" "*********", 443)) { client.Connect(); }