Python论坛  - 讨论区

标题:[python-chinese] 请问google的talk的通信协议是不是开放的?

2007年03月15日 星期四 18:07

jessinio smith jessinio在gmail.com
星期四 三月 15 18:07:39 HKT 2007

ÇëÎÊgoogleµÄtalkµÄͨÐÅЭÒéÊDz»ÊÇ¿ª·ÅµÄ£¿

-- 
×¢ÒâÉíÌ壬ÉíÌåÊǸïÃüµÄ±¾Ç®£¡£¡
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070315/3a09bef4/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 18:23

IQDoctor huanghao.c在gmail.com
星期四 三月 15 18:23:54 HKT 2007

google 貌似用的 XMPP 协议(JABBER)

如果是的话那就是公开的.


jessinio smith 写道:
> 请问google的talk的通信协议是不是开放的?
>
> -- 
> 注意身体,身体是革命的本钱!!
> ------------------------------------------------------------------------
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 19:58

batfree batfreelist在gmail.com
星期四 三月 15 19:58:01 HKT 2007

jessinio smith 写道:
> 请问google的talk的通信协议是不是开放的?
>
是开放的,使用Jabber协议,语音采用XMMP协议。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 20:45

prolibertine prolibertine在gmail.com
星期四 三月 15 20:45:59 HKT 2007

记忆中以前用linux的时候,那个时候google talk刚刚出来
是使用的jabber协议

-- 
--~--~---------~--~----~------------~-------~--~----~
Best Regards
JesseZhao(ZhaoGuang)

Blog : Http://JesseZhao.cnblogs.com
E-Mail : Prolibertine在gmail.com
IM(Live Messager) : Prolibertine在gmail.com
--~--~---------~--~----~------------~-------~--~----~

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月16日 星期五 09:20

py py.7在163.com
星期五 三月 16 09:20:20 HKT 2007

Gavin,您好!

	 昨天搞定了,貌似是python的邮箱验证太正规了`` 汗~~~~~~~ 

======= 2007-03-15 12:00:50 您在来信中写道:=======
>Message: 3
>Date: Thu, 15 Mar 2007 11:42:30 +0800
>From: "Gavin" <gavin在sz.net.cn>
>Subject: Re: [python-chinese]
>	[python发邮件]关于python发邮件的灵异事件
>To: <python-chinese在lists.python.cn>
>Message-ID: <04a701c766b3$f5a88670$fd1ea8c0在frank>
>Content-Type: text/plain;	charset="utf-8"
>
>
>想搞邮件邮件群发软件?
>
>----- Original Message ----- 
>发件人: "py" <py.7在163.com>
>收件人: <python-chinese在lists.python.cn>
>发送时间: 2007年3月15日 9:53
>主题: [python-chinese] [python发邮件]关于python发邮件的灵异事件
>
>
>各位!
>
>    关于用python发邮件代码如下:
>import smtplib
>from email.MIMEBase import MIMEBase
>from email.MIMEText import MIMEText
>from email.MIMEMultipart import MIMEMultipart
>import email
>import time
>import datetime
>femail='from在from.com'
>temail ='to在to.com'
>ccmail= 'cc在cc.com'
>msg=MIMEMultipart()
>
>msg['From'] = femail
>msg['To'] = temail
>msg['Cc'] = ccmail
>a="ttt"
>msg['Subject'] = a
>msg['Reply-To'] = femail
>msg['Date'] = time.ctime(time.time())
>
>msg['X-Priority'] =  '''3'''
>msg['X-MSMail-Priority'] =  '''Normal'''
>msg['X-Mailer'] =  '''Foxmail 5.0 [cn]'''
>
>body=email.MIMEText.MIMEText('''test''',_subtype='text/plain',_charset='gb2312')
>msg.attach(body)
>s = smtplib.SMTP('from.com')
>s.login('user','password')
>s.sendmail(femail,temail,msg.as_string())
>s.close()
>
>用163等邮箱发是正常的,但使用一些企业邮箱发的时候会报错如下:
>
>Traceback (most recent call last):
>  File "E:\1\test.py", line 31, in ?
>    s.login('user','password')
>  File "D:\Python24\lib\smtplib.py", line 587, in login
>    raise SMTPAuthenticationError(code, resp)
>SMTPAuthenticationError: (535, 'CoremailSys:Error: authentication failed')
>
>
>SMTP地址、帐号、密码正确的和在foxmail里设置的都是相同的,用foxmail就能发出去信,用上面的代码就发不出去,请问这是为什么呢,请各位指教如何解决?
>
>
>另外用
>postdata=urllib.urlencode({'user':'user','pass':'password'})
>login_response= urllib2.urlopen('', postdata)
>
>
>        致
>礼!
> 
>
>        李李
>        py.7在163.com
>          2007-03-15
>
>_______________________________________________			

        致
礼!
 
				 
        py
        py.7在163.com
          2007-03-16


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月16日 星期五 09:32

刘星 liuxing在nanjing-fnst.com
星期五 三月 16 09:32:13 HKT 2007

能否讲一下具体搞定的过程?谢谢。

> -----Original Message-----
> From: python-chinese-bounces在lists.python.cn
[mailto:python-chinese-bounces在lists.python.cn] On
> Behalf Of py
> Sent: Friday, March 16, 2007 9:20 AM
> To: python-chinese在lists.python.cn
> Subject: Re: [python-chinese][python发邮件]关于python发邮件的灵异事件
> 
> Gavin,您好!
> 
> 	 昨天搞定了,貌似是python的邮箱验证太正规了`` 汗~~~~~~~
> 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月17日 星期六 00:26

Davies Liu davies.liu在gmail.com
星期六 三月 17 00:26:33 HKT 2007

   - XMPP stands for eXtensible Messaging & Presence Protocol
   - XMPP is a generic and extensible messaging protocol based on XML. It
   is now an IETF standard
   - Jabber is an Instant Messaging protocol that rely on XMPP


On 3/15/07, batfree <batfreelist在gmail.com> wrote:
>
> jessinio smith дµÀ:
> > ÇëÎÊgoogleµÄtalkµÄͨÐÅЭÒéÊDz»ÊÇ¿ª·ÅµÄ£¿
> >
> ÊÇ¿ª·ÅµÄ£¬Ê¹ÓÃJabberЭÒ飬ÓïÒô²ÉÓÃXMMPЭÒé¡£
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese




-- 
Davies Liu
My Blog: http://blog.daviesliu.net/
-------------- 下一部分 --------------
Ò»¸öHTML¸½¼þ±»ÒƳý...
URL: http://python.cn/pipermail/python-chinese/attachments/20070317/4c0949b3/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月17日 星期六 12:05

vcc vcc在163.com
星期六 三月 17 12:05:25 HKT 2007

> On 3/15/07, batfree <batfreelist at gmail.com> wrote:
>         jessinio smith 写道:
>         > 请问google的talk的通信协议是不是开放的?
>         >
>         是开放的,使用Jabber协议,语音采用XMMP协议。

Jabber协议就是XMPP。什么是XMMP?google的语音协议是google为XMPP加的一个扩
展,jingle。



[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号