I followed the following blue print
Build a chat translation assistant with the AWS Translate service (genesys.cloud)
I coded a node js web application and hosted it on an AWC EC2 Linux VM. I also set up a new domain accessible over https pointing to the VM.
https://otonomee-translate-web-app.com:3100/
When the web app is accessed in a browsers, it initially displays just a blank page as it should
When a HTTPS post is done to the web app via Postman with a conversation ID and target language.
I can see the node js web app processing the post
and the translation being posted to the web page
In the section called "install and activate the Chat Translator in Genesys Cloud
(https://developer.genesys.cloud/blueprints/chat-translator-blueprint/#install-and-activate-the-chat-translator-in-genesys-cloud)
" in the initial document, in point 5, the documentation requires the following in the configuration of the Genesys chat translator
https://localhost/?conversationid={{gcConversationId}}&language={{gcLangTag}}
I used instead (as shown in the screen shots above)
https://otonomee-translate-web-app.com:3100/post-test/?conversationId={{gcConversationId}}&targetLlanguage={{gcLangTag}}
but is does not seem to be called when text is posted in the Genesys chat. I can not see any activity on the web app console.
Is there any other configuration or permissions that are required to get the Genesys Integration Chat to do a post to the web app?