Connecting to Jabber Server Via Proxy in Python (XMPPY) -


trying connect jabber proxy:

 > jcon = xmpp.client(server=server, port=port, debug=[])  > con=jcon.connect(server=(connect_server, port), proxy=(127.0.0.1, 80), secure=0,use_srv=true) 

without proxy connects fine. proxy syntax right? referring 'client.py' in xmppy (https://github.com/normanr/xmpppy/blob/master/xmpp/client.py) might understand syntax.

hoping response soon!

from code linked:

'proxy' argument dictionary mandatory keys 'host' , 'port' (proxy address)


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -