Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

shine-vdc

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shine-vdc

shine voip dispatch center

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

shine-vdc

banner

视频通话信令 SDK

目录

  • 安装
  • 使用
  • 结构

安装

使用 npm 包管理器

npm install @nereid/shine-vdc --save

使用 script 标签

<script src="path/to/index.js"></script>

使用

实例化

const vdc = new TQVdc({
  id: [用户ID],
  appKey: [无线云平台注册的clientNameSpace],
  dcUrl: [调度中心长链接地址],
  voipUrl: [视频通话地址],
  msgApi: [信令转发请求地址],
  host: [当前用户信息,需包含 `{id, name, sub}`三个字段]
});

监听事件

  • receive - 通话页面传递消息时触发的事件 (data) => {}

    • 默认情况下不太需要去关心该事件的处理,大部分的事件类型已经在内部做了处理,或者转成其他事件抛出

  • loaded - 通话页面成功加载的事件 () => {}

    • 一般意味着会议开始

  • unload - 通话页面关闭的事件 () => {}

  • end - 停止了会议 () => {}

  • call-vide - 当收到视频会议邀请时触发 ({ roomId, from, type } ) => {}

    • 当收到其他人的视频会议/通话邀请时,触发该事件,在该事件中可以主动弹出提示框,并告知用户是否接受或者拒绝

  • leave - 离开/强制离开会议时触发 ({msg}) => {}

  • accept - 当邀请人接受会议邀请时触发 (data) => {}

  • refuse - 当邀请人拒绝会议邀请时触发 (data) => {}

  • fetchUserInfoById - 需要获取用户信息时触发 (userId) => {}

    • 当视频会议中有新的参会人员加入时,会触发该事件,并传递参会人员的唯一标示信息,一般来说是用户id。在该事件的回掉中可以异步的请求人员信息,然后使用 sendUserInfo 传递该人员的信息

  • isMeetingChange - 会议状态改变事件 (flag) => {}

  • isDisconnectChange - 视频页面与当前业务(项目)通信状态改变事件 (flag) => {}

方法

vdc.createVoip(cb?: Function)

创建会议的方法,一般在会议创建完成后再发送会议邀请

argumentsrequiredtypedescription
cbfalseFunction创建会议完成的回掉方法
vdc.invite(type: number, id: string, user: UserInfo)

发起视频邀请

argumentsrequiredtypedescription
typetruenumber视频通话类型,2: 视频会议;3: 语音; 4: 视频通话
idtruestring被邀请的人员 id
userfalseUserInfo被邀请人的相关信息
vdc.sendUserInfo(info: UserInfo)

传递用户信息的方法,配合fetchUserInfoById事件使用

argumentsrequiredtypedescription
infotrueUserInfo用户信息需包含以下字段{ id, name, sub }
vdc.reopenVoip()

重新打开视频通话会议

vdc.answerVoip(room: string, from: string, isAccept: boolean, cb?: Function)

应答视频会议邀请的方法

argumentsrequiredtypedescription
roomtruestring会议室id
fromtruestring邀请人
isAccepttrueboolean是否同意进入会议
cbfalseFunction应答完成后的回调

vdc.destroy()

销毁实例,断开信令链接等操作

FAQs

Package last updated on 05 Nov 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc