Getting transcript from a custom action
See original GitHub issueI’m trying to create a custom action to get the conversation transcript. Problems started trying to get the connectionString from settings, it always returns null(no issues with container name). I can see the values in chatbot appSettings. Find below the code I’m using
StringExpression containerExpression = "=settings.runtimeSettings.features.blobTranscript.containerName";
var containerName = containerExpression.GetValue(dc.State); //OK
StringExpression connectionStringExpression = "=settings.runtimeSettings.features.blobTranscript.connectionString";
var connectionString = connectionStringExpression.GetValue(dc.State); //Returns Null
Am I doing something wrong? What is the best way to do this? Also, I was trying to see if there is a way to access the built-in BlobsTranscriptStore service/middleware but I couldn’t find a way to do it. Thanks in advance for all your help on this.
Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (1 by maintainers)
Top Results From Across the Web
Live Chat Transcript - Quick Actions - IdeaExchange - Salesforce
Live Chat Transcript - Quick Actions. Service / Messaging. My agents would like the option to create a custom object after a chat...
Read more >Get transcript JSON from URL using a data action?
Using a few custom data actions, we can use the following API: ... there any way of GET-ing the transcript from this URL...
Read more >Executing custom actions - BMC Documentation
Execute show commands to collect device information for reporting and analysis; Get device information for use by a subsequent job span action.
Read more >Start-Transcript (Microsoft.PowerShell.Host)
The Start-Transcript cmdlet creates a record of all or part of a PowerShell session to a text file. The transcript includes all command...
Read more >Tips & Tricks: Chat Transcript Custom Action (PHP)
During the process, your custom PHP code can also be processed to send the chat transcript to a ticketing system, save it to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @jcmorara You can get the settings from the runtime just as you would get any settings from a .NET core app.
But if you want to get as an expression (or other memory variables other than
settings.___
(turn.
,user.
,etc), that should be possible too. Let me take a look and see if I can find what may be the issue.hi @jcmorara I’m going to close this as it seems as though this has been answered. Please let me know if you have further questions.
To work around this issue, a couple of ideas are: