Giter Club home page Giter Club logo

chat-sdk-reactnative's Introduction

Tencent Chat SDK for React native

Tencent Cloud's official IM React Native SDK can easily integrate chat, conversation, group, and data management capabilities to help you send and receive rich media messages such as text, pictures, short voices, and short videos, fully meeting communication needs.

About Tencent Cloud Chat

Tencent Cloud Chat provides globally interconnected chat APIs, multi-platform SDKs, and UIKit components to help you quickly bring messaging capabilities such as one-to-one chat, group chat, chat rooms, and system notifications to your applications and websites.

Through the official React Native SDK react-native-tim-js, you can efficiently integrate real-time chat into your client app.

You can sign up for a Tencent Cloud account at here.

Explore more docs about Tencent Cloud Chat.

Commonly Used Scenarios

  • Online Customer Service

  • OA

  • Interactive Live Streaming

  • Social Messaging

  • Influencer Marketing

  • Interactive Game

  • Online Education

  • Online Healthcare

  • Meeting

  • Smart Device

  • Private Cloud Deployment

Installation

// npm
    npm install react-native-tim-js
//yarn
    yarn add react-native-tim-js

Prerequisites

  1. You have signed up for a Tencent Cloud account,and completed identity verification
  2. Please refer to Creating and Upgrading an Application and create an app,record its SDKAppID

Getting started

import { TencentImSDKPlugin } from 'react-native-tim-js';

// Obtain Chat Instance
const timManger = TencentImSDKPlugin.v2TIMManager;

// Group Manager Interface,includes advanced function of the group,such as group member invitation, non-group member join application and other operation interfaces
const groupManager = timManager.getGroupManager();

// Advanced Message Interface, includes create message,send message,get historical message and other operation interfaces
const messageManager = timManager.getMessageManager();

// Friendship Interface,includes addtion and deletion of friends,addtion and deletion of blocklist and other operation interfaces
const friendshipManager = timManager.getFriendshipManager();

// Conversation Interface,includes getting,deleting,updating conversation and other operation interfaces
const conversationManager = timManager.getConversationManager();

// Offline Push Interface
const offlinePushManager = timManager.getOfflinePushManager(); 

// Signaling Manager Interface
const signalingManager = timManager.getSignalingManager();

// Init SDK
const sdkAppID = 0; // sdkAppID from prerequisites
const logLevel = LogLevelEnum.V2TIM_LOG_DEBUG;
await timManger.initSDK(sdkAppID, logLeve);

// Login
const userID = 123456; // User ID
const userSig = "xxx"; // userSig generation see [Generating UserSig](https://cloud.tencent.com/document/product/269/32688)
timManger.login(userID, userSig);

// Send First Message
const friendID = 456789; // Receiver ID
const text = "Hello, Tencent IM";
timManger.sendC2CTextMessage(friendID, text);

// logout
timManager.logout();

API Docs & Changelogs

If you want to find out more api docs about react-native-tim-js, go to Docs.

If you want to check the record of SDK versions, go to Change Log.

Reference

chat-sdk-reactnative's People

Contributors

zqfan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.