
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
tccall-sdk
Advanced tools
1、安装依赖:npm install tccall-sdk
2.1、在需要外呼的vue文件中引入,调用外呼功能: import { tcCallOut } from 'tccall-sdk'
<script setup>
import { tcCallOut } from 'tccall-sdk'
function callout() {
const params = {
"customer_mobile": "694073126021191752",
"tccc_sdk_token": "https://tccc.qcloud.com/sdk/tcccSdk.js?sdkAppId=1600045494&token=389d3ee734ab4d8382d99d72aeb9f6b7&userid=349264242%40qq.com",
"ivr_tel": "0086057128204862",
"tccc_callout_uui": "{\"source\":2,\"call_client_id\":202407230000000001}",
"my_token": {
"access_token": "0e5ddf06f5a4bc9d125f93e084038297402e49c0",
"token_type": "Bearer"
}
}
tcCallOut(params, true, function (res) {
const {call_record_id:'会话id', customer_id:'客户id'} = res
}, 0)
}
</script>
| 参数 | 说明 | 类型 | 可选值 | 默认值 | 备注 |
|---|---|---|---|---|---|
| params | 通过tccc鉴权接口返回的JSON信息 | JSON | 必填 | ||
| isCallBack | 是否回访,false:无回访,true:有回访 | Boolean | - | ||
| callBackFn | 当isCallBack为true时会返回用户id和通话id | Function | - | (res:{call_record_id:'会话id', customer_id:'客户id'})=>{} | |
| serverType | 环境变量Int值 0测试环境,1模测环境, 2线上环境 可选参数,默认为2 | Number | - | 2 | |
| loading | 调用tcCallOut方法的时候,是否需要展示loading蒙层 | Boolean | - | true |
注意:isCallBack: false 时,在拨打电话的时候会自动弹出内置组件《会话小结》
2.2、在需要外呼的vue文件中引入,调用外呼名单收集功能: import { createCallTask } from 'tccall-sdk'
<script setup>
import { createCallTask } from 'tccall-sdk'
function createTask() {
const params = {
requestParams:{
"app_id": "",
"sign": "",
"nonce": "",
"timestamp": "",
"users":[{ name: '张三', mobile: 'xxxxxxxxxx' }, { name: '李四', mobile: 'xxxxxxxxxxxxx' },],
"client_operator": "",
"hospital_id": '72',
"subhospital_id": '73'
},
serverType: 0
}
createCallTask(params, callBackFn)
}
const callBackFn = (res) => {
}
</script>
| 参数 | 说明 | 类型 | 可选值 | 默认值 | 备注 |
|---|---|---|---|---|---|
| params | 通过tccc鉴权接口返回的JSON信息 | JSON | 必填 | ||
| callBackFn | 信息收集回调 | Function | 选填 | (res:Boolean)=>{} | - |
FAQs
1、安装依赖:npm install tccall-sdk
The npm package tccall-sdk receives a total of 0 weekly downloads. As such, tccall-sdk popularity was classified as not popular.
We found that tccall-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.