There is a sample for Conversation History: https://github.com/Microsoft/BotBuilder-Samples/tree/master/samples/csharp_dotnetcore/22.conversation-history
Actually sending the transcript doesn't work in my attempts to run it. Specifically this line:
await connectorClient.Conversations.SendConversationHistoryAsync(activity.Conversation.Id, transcript, cancellationToken: cancellationToken);
I get the following exception:
ConversationHistory> fail: Microsoft.BotBuilderSamples.ConversationHistoryBot[0] ConversationHistory> Exception caught : System.Threading.Tasks.TaskCanceledException: The operation was canceled. ---> System.IO.IOException: Unable to read data from the transport connection: The I/O operation has been aborted because of either a thread exit or an application request. ---> System.Net.Sockets.SocketException: The I/O operation has been aborted because of either a thread exit or an application request ConversationHistory> --- End of inner exception stack trace --- ConversationHistory> at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error) ConversationHistory> at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token) ConversationHistory> at System.Net.Http.HttpConnection.FillAsync() ConversationHistory>
at System.Net.Http.HttpConnection.ReadNextResponseHeaderLineAsync(Boolean foldedHeadersAllowed) ConversationHistory> at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) ConversationHistory>
--- End of inner exception stack trace --- ConversationHistory> at Microsoft.BotBuilderSamples.ConversationHistoryBot.OnTurnAsync(ITurnContext turnContext, CancellationToken cancellationToken) in C:\Users\Oyen\source\repos\BotBuilder-Samples\samples\csharp_dotnetcore\22.conversation-history\ConversationHistoryBot.cs:line 99 ConversationHistory> at Microsoft.Bot.Builder.TranscriptLoggerMiddleware.OnTurnAsync(ITurnContext turnContext, NextDelegate nextTurn, CancellationToken cancellationToken) in D:\a\1\s\libraries\Microsoft.Bot.Builder\TranscriptLoggerMiddleware.cs:line 105 ConversationHistory> at Microsoft.Bot.Builder.MiddlewareSet.ReceiveActivityWithStatusAsync(ITurnContext turnContext, BotCallbackHandler callback, CancellationToken cancellationToken) in D:\a\1\s\libraries\Microsoft.Bot.Builder\MiddlewareSet.cs:line 55 ConversationHistory> at Microsoft.Bot.Builder.BotAdapter.RunPipelineAsync(ITurnContext turnContext, BotCallbackHandler callback, CancellationToken cancellationToken) in D:\a\1\s\libraries\Microsoft.Bot.Builder\BotAdapter.cs:line 167
I can confirm that the transcript files are saved in my blob storage, and I can iterate through the activities retrieved from the blob.
(1) What am I missing to get SendConversationHistoryAsync() to work?
(2) What does the actual transcript look like when sent? (Is it worth it to just iterate through my activities and handle each activity type and make my own conversation history message?)
TaskCancelled
exception on emulator V3 (including the blob storage folder contaiing the transcript log), but the bot worked as expected on emulator v4. – Mark B