hyphenate_SDK3.0  3.6.1
hyphenatejavaIMSDK
| Public 成员函数 | 静态 Public 成员函数 | 静态 Public 属性 | 所有成员列表
com.hyphenate.chat.EMClient类 参考

interface  AppStateListener
 
interface  CheckResultListener
 
class  MyConnectionListener
 
class  MyMultiDeviceListener
 

Public 成员函数

void init (Context context, EMOptions options)
 
void createAccount (String username, String password) throws HyphenateException
 
void login (String id, String password, final EMCallBack callback) throws IllegalArgumentException
 
void loginWithToken (String username, String token, final EMCallBack callback)
 
int logout (boolean unbindToken)
 
void logout (final boolean unbindToken, final EMCallBack callback)
 
void changeAppkey (String appkey) throws HyphenateException
 
void addConnectionListener (final EMConnectionListener listener)
 
void addClientListener (final EMClientListener listener)
 
void removeClientListener (final EMClientListener listener)
 
void removeConnectionListener (final EMConnectionListener listener)
 
EMGroupManager groupManager ()
 
EMPushManager pushManager ()
 
EMChatRoomManager chatroomManager ()
 
EMChatManager chatManager ()
 
EMContactManager contactManager ()
 
EMCallManager callManager ()
 
EMConferenceManager conferenceManager ()
 
Context getContext ()
 
String getCurrentUser ()
 
void getUserTokenFromServer (final String username, final String password, final EMValueCallBack< String > callBack)
 
boolean isLoggedInBefore ()
 
boolean isConnected ()
 
void setDebugMode (boolean debugMode)
 
boolean updateCurrentUserNick (String nickname)
 
void uploadLog (EMCallBack callback)
 
List< EMContactgetRobotsFromServer () throws HyphenateException
 
EMOptions getOptions ()
 
String compressLogs () throws HyphenateException
 
void addMultiDeviceListener (EMMultiDeviceListener listener)
 
void removeMultiDeviceListener (EMMultiDeviceListener listener)
 
List< EMDeviceInfogetLoggedInDevicesFromServer (String username, String password) throws HyphenateException
 
void kickDevice (String username, String password, String resource) throws HyphenateException
 
void kickAllDevices (String username, String password) throws HyphenateException
 
void sendFCMTokenToServer (String fcmToken)
 
void sendHMSPushTokenToServer (String appId, String token)
 
void sendHMSPushTokenToServer (String token)
 
boolean isFCMAvailable ()
 
String getAccessToken ()
 
EMChatConfigPrivate getChatConfigPrivate ()
 
JSONObject getDeviceInfo ()
 
void check (String username, String password, final CheckResultListener listener)
 

静态 Public 成员函数

static EMClient getInstance ()
 

静态 Public 属性

static final String TAG = "EMClient"
 
static final String VERSION = "3.6.1"
 

详细描述

IM SDK的入口,负责登录退出及连接管理等,由此可以获得其他模块的入口

 EMChatManager chatManager = EMClient.getInstance().chatManager();

成员函数说明

◆ addConnectionListener()

void com.hyphenate.chat.EMClient.addConnectionListener ( final EMConnectionListener  listener)

添加EMConnectionListener

参数
listener

◆ addMultiDeviceListener()

void com.hyphenate.chat.EMClient.addMultiDeviceListener ( EMMultiDeviceListener  listener)

添加多设备监听的接口

参数
listener

◆ callManager()

EMCallManager com.hyphenate.chat.EMClient.callManager ( )

获取EMCallManager

返回
EMCallManager

◆ changeAppkey()

void com.hyphenate.chat.EMClient.changeAppkey ( String  appkey) throws HyphenateException

更改appkey,注意只有在未登录状态才能修改appkey

参数
appkey

◆ chatManager()

EMChatManager com.hyphenate.chat.EMClient.chatManager ( )

获取EMChatManager

返回
EMChatManager

◆ chatroomManager()

EMChatRoomManager com.hyphenate.chat.EMClient.chatroomManager ( )

获取EMChatRoomManager

返回
EMChatRoomManager

◆ check()

void com.hyphenate.chat.EMClient.check ( String  username,
String  password,
final CheckResultListener  listener 
)

服务诊断接口,流程如下: 1.校验用户名和密码 2.从服务端获取DNS列表 3.从服务端获取Token 4.连接IM服务器 5.断开连接(如果检查前已经有账户登录,则不执行该步骤)

如果在诊断过程中产生了错误,该流程将会被打断.

参数
username用于服务诊断的用户名,如果已有账户登录,该用户名会被替换为已登录账户的用户名,以防止更改当前已登录账户 的信息,比如Token等...
password密码,如果已有账户登录,该密码会被替换为已登录账户的密码.
listener诊断结果回调

Contains account-validation check, get-dns check, get-token check, login check. So the EMAChatClient.CheckResultListener#onResult(int, int, String) callback will be called four times.

◆ compressLogs()

String com.hyphenate.chat.EMClient.compressLogs ( ) throws HyphenateException

压缩log文件,并返回压缩后的文件路径

返回
compressed gz file
异常
HyphenateException

◆ conferenceManager()

EMConferenceManager com.hyphenate.chat.EMClient.conferenceManager ( )

获取EMConferenceManager

返回
EMConferenceManager

◆ contactManager()

EMContactManager com.hyphenate.chat.EMClient.contactManager ( )

获取EMContactManager

返回
EMContactManager

◆ createAccount()

void com.hyphenate.chat.EMClient.createAccount ( String  username,
String  password 
) throws HyphenateException

创建账号

参数
username
password

◆ getAccessToken()

String com.hyphenate.chat.EMClient.getAccessToken ( )

获取身份认证权限 在上传下载附件(语音,图片,文件等)时必须添加到请求header中 当出现任何异常时将返回null, 可通过判断是否为null来检测是否有问题 如果为null,在打开EMLog日志时,是可以看到异常原因。

返回

◆ getCurrentUser()

String com.hyphenate.chat.EMClient.getCurrentUser ( )

获取当前登录用户的用户名

返回
当前登录的用户

◆ getLoggedInDevicesFromServer()

List<EMDeviceInfo> com.hyphenate.chat.EMClient.getLoggedInDevicesFromServer ( String  username,
String  password 
) throws HyphenateException

获取账号名下登陆的在线设备列表

返回
在线设备列表
异常
HyphenateException

◆ getOptions()

EMOptions com.hyphenate.chat.EMClient.getOptions ( )

获取EMOptions

◆ getRobotsFromServer()

List<EMContact> com.hyphenate.chat.EMClient.getRobotsFromServer ( ) throws HyphenateException

获取Robot列表

返回
list of EMContact
异常
HyphenateException

◆ getUserTokenFromServer()

void com.hyphenate.chat.EMClient.getUserTokenFromServer ( final String  username,
final String  password,
final EMValueCallBack< String >  callBack 
)

根据用户名和密码获取token

参数
username用户名
password密码
callBack结果回调

◆ groupManager()

EMGroupManager com.hyphenate.chat.EMClient.groupManager ( )

获取EMGroupManager

返回
EMGroupManager

◆ init()

void com.hyphenate.chat.EMClient.init ( Context  context,
EMOptions  options 
)

初始化SDK。

◆ isConnected()

boolean com.hyphenate.chat.EMClient.isConnected ( )

检查是否连接到聊天服务器

返回

◆ isLoggedInBefore()

boolean com.hyphenate.chat.EMClient.isLoggedInBefore ( )

返回是否登录过 登录成功过没调logout方法,这个方法的返回值一直是true 如果需要判断当前是否连接到服务器,请使用isConnected()方法

if(EMClient.getInstance().isLoggedInBefore()){
    // enter main activity
}else{
    // enter login activity
}
返回

◆ kickAllDevices()

void com.hyphenate.chat.EMClient.kickAllDevices ( String  username,
String  password 
) throws HyphenateException

将该账号下的所有设备都踢下线

异常
HyphenateException

◆ kickDevice()

void com.hyphenate.chat.EMClient.kickDevice ( String  username,
String  password,
String  resource 
) throws HyphenateException

根据设备ID,将该设备下线, 设备ID:EMDeviceInfo#getResource()

参数
username账户名称
password该账户密码
resource设备ID
异常
HyphenateException

◆ login()

void com.hyphenate.chat.EMClient.login ( String  id,
String  password,
final EMCallBack  callback 
) throws IllegalArgumentException

登录IM服务器

参数
id用户id
password用户密码
callbackEMCallback回调函数
异常
IllegalArgumentException

◆ logout() [1/2]

int com.hyphenate.chat.EMClient.logout ( boolean  unbindToken)

退出

参数
unbindToken是否解绑token

◆ logout() [2/2]

void com.hyphenate.chat.EMClient.logout ( final boolean  unbindToken,
final EMCallBack  callback 
)

异步登出聊天服务器

参数
unbindToken是否解绑token
callbackEMCallback回调

◆ removeConnectionListener()

void com.hyphenate.chat.EMClient.removeConnectionListener ( final EMConnectionListener  listener)

删除EMConnectionListener

参数
listener

◆ removeMultiDeviceListener()

void com.hyphenate.chat.EMClient.removeMultiDeviceListener ( EMMultiDeviceListener  listener)

删除多设备监听的接口

参数
listener

◆ sendFCMTokenToServer()

void com.hyphenate.chat.EMClient.sendFCMTokenToServer ( String  fcmToken)

上传FCM token至服务器

token可以被上传的前提条件有: 1.被上传的token不为空 2.当前已有用户登录 3.当前设备支持google推送 4.google推送类型为FCM com.hyphenate.push.EMPushType#FCM 设置推送类型为FCM的接口为EMOptions#setFCMNumber(String),即设置了FCM number则推送类型为FCM

◆ sendHMSPushTokenToServer()

void com.hyphenate.chat.EMClient.sendHMSPushTokenToServer ( String  appId,
String  token 
)

发送华为推送 token 到服务器

参数
appId华为 appId
token华为推送 token

◆ setDebugMode()

void com.hyphenate.chat.EMClient.setDebugMode ( boolean  debugMode)

debugMode == true 时,sdk 会在log里输出调试信息

参数
debugMode

◆ updateCurrentUserNick()

boolean com.hyphenate.chat.EMClient.updateCurrentUserNick ( String  nickname)

更新当前用户的nickname 此方法主要为了在苹果推送时能够推送nick而不是userid 一般可以在登陆成功后从自己服务器获取到个人信息,然后拿到nick更新到环信服务器 并且,在个人信息中如果更改个人的昵称,也要把环信服务器更新下nickname 防止显示差异

参数
nickname昵称
弃用:
use EMPushManager#updatePushNickname(String) instead

◆ uploadLog()

void com.hyphenate.chat.EMClient.uploadLog ( EMCallBack  callback)

上传本地的log


该类的文档由以下文件生成: