Partilhar via


Tutorial de Acesso ao Arquivo de Log

Neste tutorial, você aprenderá a acessar os arquivos de log armazenados no dispositivo com o SDK de chamada.

Pré-requisitos

  • Acesso a uma CallClient instância
// Call when a support request is being called
private void onSupportRequest(String userMessage) {
    // Assuming the getSupportFiles method returns a List or similar collection.
    List<SupportFile> supportFiles = callClient.getdebugInfo().getSupportFiles();

    // Send the files and any user message to your Ticket System            
    dispatchSupportRequestToBackend(userMessage, supportFiles);
}
// Call when a support request is being called
private func onSupportRequest(userMessage: String) {
    // Assuming the getSupportFiles method returns an array or similar collection.
    let supportFiles = callClient.debugInfo.getSupportFiles()
    
    // Send the files and any user message to your Ticket System            
    dispatchSupportRequestToBackend(userMessage: userMessage, supportFiles: supportFiles)
}
// Call when a support request is being called
private void OnSupportRequest(string userMessage) 
{
    // Assuming the GetSupportFiles method returns a List or similar collection.
    IReadOnlyList<SupportFile> supportFiles = callClient.DebugDetails.SupportFiles;

    // Send the files and any user message to your Ticket System            
    DispatchSupportRequestToBackend(userMessage, supportFiles);
}

Próximos passos

Consulte o documento de suporte de integração para obter uma visão mais detalhada de como estruturar um fluxo de suporte de ponta a ponta. Este documento ajuda a direcioná-lo para as ferramentas disponíveis para criar um fluxo de suporte eficaz em seus Aplicativos.

Você também pode gostar

Tutoriais

Documentos conceituais