日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

【iOS XMPP】使用XMPPFramewok(二):用户登录

發布時間:2024/9/30 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【iOS XMPP】使用XMPPFramewok(二):用户登录 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

用戶登錄

?

準備工作

比較知名的開源XMPP服務器:一個是Openfire,一個是ejabberd

Openfire 使用 Java 語言編寫,比較容易上手,地址:http://www.igniterealtime.org/projects/openfire/

ejabberd 使用 Erlang 語言編寫,是一款非常知名的 Erlang 開源項目,地址:http://www.ejabberd.im/

安裝 ejabberd,可以參考我的博客:【ejabberd】安裝XMPP服務器ejabberd(Ubuntu 12.04)

搭建一個自己的 XMPP 服務器之后,就讓我們開始吧!

?

連接服務器

1、新建一個 XMPPStream 對象,添加委托

添加委托方法 - (void)addDelegate:(id)delegate delegateQueue:(dispatch_queue_t)delegateQueue

參數 delegateQueue 為委托回調所使用的 GCD 隊列,dispatch_get_main_queue() 獲取主線程 GCD 隊列

2、設置 JID 和 主機名

JID 一般由三部分構成:用戶名,域名和資源名,例如 test@example.com/Anthony

如果沒有設置主機名,則使用 JID 的域名作為主機名

端口號是可選的,默認是 5222

3、連接

- (void)connect {if (self.xmppStream == nil) {self.xmppStream = [[XMPPStream alloc] init];[self.xmppStream addDelegate:self delegateQueue:dispatch_get_main_queue()];}if (![self.xmppStream isConnected]) {NSString *username = [[NSUserDefaults standardUserDefaults] objectForKey:@"username"];XMPPJID *jid = [XMPPJID jidWithUser:username domain:@"lizhen" resource:@"Ework"];[self.xmppStream setMyJID:jid];[self.xmppStream setHostName:@"10.4.125.113"];NSError *error = nil;if (![self.xmppStream connect:&error]) {NSLog(@"Connect Error: %@", [[error userInfo] description]);}} }

?

身份認證

實現?- (void)xmppStreamDidConnect:(XMPPStream?*)sender?委托方法

連接服務器成功后,回調該方法

This method is called after the XML stream has been fully opened.?More precisely, this method is called after an opening <xml/> and <stream:stream/> tag have been sent and received,?and after the stream features have been received, and any required features have been fullfilled.?At this point it's safe to begin communication with the server.

身份認證方法?- (BOOL)authenticateWithPassword:(NSString?*)inPassword error:(NSError?**)errPtr

- (void)xmppStreamDidConnect:(XMPPStream *)sender {NSString *password = [[NSUserDefaults standardUserDefaults] objectForKey:@"password"];NSError *error = nil;if (![self.xmppStream authenticateWithPassword:password error:&error]) {NSLog(@"Authenticate Error: %@", [[error userInfo] description]);} }

?

上線

實現?- (void)xmppStreamDidAuthenticate:(XMPPStream?*)sender?委托方法

身份認證成功后,回調該方法

This method is called after authentication has successfully finished.?

If authentication fails for some reason, the xmppStream:didNotAuthenticate: method will be called instead.

新建一個 XMPPPresence 對象,類型為 available,發送!

- (void)xmppStreamDidAuthenticate:(XMPPStream *)sender {XMPPPresence *presence = [XMPPPresence presenceWithType:@"available"];[self.xmppStream sendElement:presence]; }

?

退出并斷開連接

新建一個?XMPPPresence 對象,類型為 unavailable,發送!

斷開連接

- (void)disconnect {XMPPPresence *presence = [XMPPPresence presenceWithType:@"unavailable"];[self.xmppStream sendElement:presence];[self.xmppStream disconnect]; }

?

總結

以上是生活随笔為你收集整理的【iOS XMPP】使用XMPPFramewok(二):用户登录的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。