PHP code example of singiu / neteaseim

1. Go to this page and download the library: Download singiu/neteaseim library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

singiu / neteaseim example snippets


$app_key = 'Your App Key';
$app_secret = 'Your App Secret';

$im = new NeteaseIM($app_key, $app_secret);

$acc_id = 'singiu';

$data = array(
    'name' => 'User nick name',
    'icon' => 'Avatar url',
    // ...
    // 其它参数可以参考网易云的文档:http://dev.netease.im/
);

$im->create($acc_id, $data);

$acc_id = 'singiu';
// 只接受两个参数:
$data = array(
    'props' => 'JSON 属性,第三方可选填,最大长度 1024 字符。',
    'token' => '网易云通信 ID 可以指定登录 token 值,最大长度 128 字符。',
);

$im->update($acc_id, $data);

$acc_id = 'singiu';
$result = $im->refreshToken($acc_id);
$new_token = $result['token'];

$acc_id = 'singiu';
$need_kick = true; // 是否踢掉被禁用户(强迫下线),可以不传这个参数,不传默认为 false。
$im->block($acc_id, $need_kick);

$acc_id = 'singiu';
$im->unblock($acc_id);

$acc_id = 'singiu';
$user_info = $im->getUserInfo($acc_id);
echo $user_info['email']; // [email protected]

$acc_ids = ['singiu', 'jue'];
$users_info = $im->getUsersInfo($acc_ids);
var_dump($users_info);

// 请求方式和参数都与 `$im->create($accId, $data)` 一样,只是方法名改为 `updateUserInfo()`。
$acc_id = 'singiu';
$data = array(
    'name' => 'Star',
    'email' => '[email protected]',
    // ...
);

$im->updateUserInfo($acc_id, $data);

$from = 'singiu'; // 发送者 accid
$to = 'jue'; // 接收者 accid
$text = 'Hello World!';

$im->sendTextMessage($from, $to, $text);

$from = 'singiu';
$to = 'jue';
$attach = array(
    'customDataKey1' => 'customDataValue1',
    'customDataKey2' => 'customDataValue2',
    // ...
    // 这里的数据都是自定义的,方法会把它转成 JSON 格式透传给客户端。
);

$im->sendAttachMessage($from, $to, $attach);