I tried the code below to connect to Facebook through Agsxmpp.Dll, but when I connect to it, it shows login failed on OnAuthError Event. How do I solve this?
ObjAgx = New XmppClientConnection
ObjAgx.Server = "chat.facebook.com"
ObjAgx.Username = txtusername.text
ObjAgx.Password = txtPassword.Text
ObjAgx.Port = 5222
ObjAgx.AutoResolveConnectServer = False
objAgx.open()
Is there any method to connect to Facebook using xmpp?