always/tencent-im

Tencent IM Service api

v1.0 2022-03-29 04:09 UTC

This package is auto-updated.

Last update: 2024-04-18 12:45:21 UTC


README

  1. PHP >= 7.0
$ composer require "always/tencent-im:^1.0"

Usage

<?php

use Always\TencentIm\TencentIm;

$config = ['appid' => 'AppId', 'key' => 'Key'];
$im = new TencentIm($config);
$res = $im->account->accountCheck([['UserID' => '1']]);
var_dump($res);


$account = $im->account; // 账号管理API
$message = $im->message; // 消息API
$sns = $im->sns; // 关系链管理API