我正在開發聊天應用程序。如何獲取iPhone聊天應用程序的端口號
但現在聊天是可能的只有谷歌,因爲我知道只有谷歌的端口號。
xmppClient = [[XMPPClient alloc] init];
[xmppClient addDelegate:self];
// Replace me with the proper domain and port.
// The example below is setup for a typical google talk account.
[xmppClient setDomain:@"talk.google.com"];
[xmppClient setPort:5222];
你可以看到,谷歌已經將5222設置爲端口號。
同樣的方式我想爲雅虎設置端口號,windows messenger &其他熱門網站,我怎樣才能得到所有這些?
(是類似的東西 - 「XMPP是特定於谷歌的人」?)
這屬於superuser.com – 2009-11-22 02:03:04
它可以在任一.. – 2009-11-22 13:36:21