tencent cloud

Cloud Contact Center

Announcement
What's New
Cloud Contact Center Terminology Update
What is Tencent Cloud Contact Center
Overview
Feature List
Terms Introduction
Handling Firewall Restrictions
AI Voicebot
Billing Guide
Voice Call Billing Overview
Desk Billing Overview
View Billing
Refund Policy
New User Guide
Voice Guide
Desk Guide
Use Case
Inbound: Customer Experience
Outbound: Telemarketing
Auto Dialer: Voice Notification
Integration Use Case (SDK)
Administrator Guide
Voice Guide
Desk Guide
Member Guide
Voice Guide
Desk Guide
AI Voice Agent Guide
Introducing AI Voice Agent
AI Voice Agent Practical Tutorial
Set Up Your AI Voice Agent
Activate AI Voice Agent Call
AI Voice Agent Call Logs
Developer Guide
SDK Development Guide
Data Push
Voice API Reference
History
Introduction
API Category
Making API Requests
Agent APIs
Skill Group APIs
Number APIs
Dual Call APIs
Predictive Outbound Call APIs
SIP Phone APIs
Call Service Record APIs
Billing APIs
Other APIs
Outbound Call APIs
Speech Intelligent Agent APIs
Data Types
Error Codes
Desk API Reference
API Reference
Callback Configuration
FAQs
Data Deletion Guide
Legal
Privacy Policy
Data Processing And Security Agreement
Service Level Agreements
TENCENT CLOUD CONTACT CENTRE TERMS OF USE
Glossary
Contact Us

FAQs About Client SDK

PDF
フォーカスモード
フォントサイズ
最終更新日: 2024-04-01 17:58:36

How do I view Cloud Contact Center logs?

The logs of Cloud Contact Center are compressed and encrypted by default, with suffix .log.
Android log path: /sdcard/Android/data/package name/files/tccc
iOS log path: sandbox/Documents/tccc

Does TCCC Agent Android support emulators?

The current version of TCCC does not support simulators, but it will support them in the future.

Why does audio collection stop when Android is in the background?

 Android 9.0 limits microphone access when an app goes into the background to prevent calls from being muted. To avoid this, send a foreground notification when the app is in the background, or use Settings to keep the screen on.

Are the callbacks on iOS all on the main thread?

All callbacks in the Swift and OC interfaces are on the main thread, so developers do not need to handle them specially. However, callbacks in c++ are not on the main thread and need to be assessed by the business layer and then switched to the main thread:
if ([NSThread isMainThread]) {
// On the main thread, you can directly process
return;
}
dispatch_async(dispatch_get_main_queue(), ^{
// Callbacks are made from a non-main thread.
});

Is there a corresponding SDK for other platforms like Windows?

TCCC provides a cross-platform SDK. If needed, you can Contact Us, and we will provide it offline.

ヘルプとサポート

この記事はお役に立ちましたか?

フィードバック