双击配置Xshell,进入本地,点击左上角的文件,选择新建,会弹出一个窗口。连接:写任意会话名,然后选择ssh作为协议(云服务器远程连接我们一般用SSH协议)。主机是云服务器的IP,端口22不需要改
2021-10-25 14:55:12
209
非官方即时通信 IM,支持腾讯IM,环信IM,极光IM,融云IM,网易云信IM等
composer require whereof/easy-im\whereof\easyIm\Kernel\BaseClient::$request_log=true;$config = [
  'appId'      => '5978322198',
  'identifier' => 'administrator',
  'secretKey'  => 'nfugb53xtlhyfq2kgiriganruyoagh93it1zwysmh2tmj5tnnmuqhd2og5ofktjt',
];
$im = whereof\easyIm\Factory::Tencent($config);
// 自定义请求(账号同步到云端)
$params = [
    'Identifier' => 'easyim',
    'Nick'       => 'easyim',
    'FaceUrl'    => 'https://github.com/whereof/easy-im',
];
$im->request->send('im_open_login_svc/account_import', $params);$config = [
  'appKey'       => '',
  'clientId'     => '',
  'clientSecret' => '',
  'orgName'      => '',
  'appName'      => '',
];
$im = whereof\easyIm\Factory::Huanxin($config);
// 自定义请求(账号同步到云端)
$params = [
    'username' => 'easyim',
    'password' => '123456',
    'nickname' => 'easyim'
];
$im->request->send('post', 'users', $params);$config = [
  'appKey'       => '',
  'masterSecret' => '',
];
$im = whereof\easyIm\Factory::Jiguang($config);
// 自定义请求(账号同步到云端)
$params = [[
    'username' => 'easyim',
    'password' => '123456',
]];
$im->request->send('post', 'v1/users/', $params);
//IM REST Report V2
//获取消息
$im->request->send('get', 'v2/messages?count=500&begin_time=2015-11-02 10:10:10&end_time=2015-11-02 10:10:12',[],true);$config = [
  'appKey'    => '',
  'appSecret' => '',
];
$im = whereof\easyIm\Factory::RongCloud($config);
// 自定义请求(账号同步到云端)
$params=[
    'userId' => 'easyim',
    'name'   => 'easyim',
];
$im->request->send('user/getToken.json', $params);$config = [
  'appKey'    => '',
  'appSecret' => '',
];
$im = whereof\easyIm\Factory::Yunxin($config);
// 自定义请求(账号同步到云端)
$params = [
    'accid' => 'easyim',
    'name'  => 'easyim',
];
$im->request->send('nimserver/user/create.action', $params);如果你认可我们的开源项目,有兴趣为 easy-im 的发展做贡献,竭诚欢迎加入我们一起开发完善。无论是报告错误或是 Pull Request 开发,那怕是修改一个错别字也是对我们莫大的帮助。
https://github.com/whereof/wh...
MIT
30
2022-11
25
2021-10
24
2021-09