IM Sdk for Tencent Instant Messaging.
- PHP >= 7.2
- Composer
- Openssl Extension, Curl Extension
$ composer require "jimchen/tim-sdk:^2.0"
Basic Usage:
use TimSDK;
$options = [
'app_id' => '14000xxxx',
'identifier' => 'admin',
'key' => 'Your key',
'http' => [
'timeout' => 30,
],
];
$app = new TimSDK\Application($options);
$collect = $app->account->import('identifier', 'nickname', 'faceUrl');