Embedding Widget in Apps
Ready to use chat widgets for your Apps.
Last updated
Ready to use chat widgets for your Apps.
Last updated
You can embed the out of the box widget that the platform can serve in a mobile or tablet apps too. This is done by calling the responsive widget URL served by the dhee.world domain in your web views.
E.g, embedding https://{your-bot-instance}.dhee.world in a web-view in your app will show a widget like this-
The background colour around your widget can be changed by adding a GET parameter named bgColor.
The bgColor parameter has to be set to the hex code of the colour you want (without prefixing with the # symbol"
E.g, https://mybot.dhee.world?bgColor=0d66d5
To remove the halo and the background from the default widget and display a fullscreen widget, you just need to add a GET parameter named fullscreen. The value of the parameter should always be set to true.
E.g, https://mybot.dhee.world?fullscreen=true
Many times, you would want to launch a chatbot for engaging users who are already logged in to your App. In such cases you can let Dhee be aware that you are launching the bot for a given logged-in user. This is done by sending the user's details in a JSON string, after encrypting it using AES encryption. The encrypted payload should then be included in the dhee.world URL as a GET parameter "payload".
The flavour of AES we are using is AES-CBC, which requires the encrypting side to include an Initialisation Vector, which is a Byte array of size 16.
The JSON payload to be encrypted, should be of the format:
Parameter | Remarks |
---|---|
userName | The full name of the logged in user. |
language | The preferred language of the logged in user. This has to be a language that Dhee.AI supports |
contactNumber | The mobile number of the logged in user. If not available please set is as "0000000000" (ten zeroes) |
Additional custom parameters | Any additional parameters that you provide will be made available to your Dialog state machines as a slot with the same parameter name. Please make sure the parameter names are single words in camel case. |
The GET request should have the following header:
As hinted above, the value of the header key-vec should be the base-64 encrypted form of your initialisation vector.
The key used for AES encryption has to pre-configured in the Dhee developer platform in the Agent Settings/Advanced Settings Page, as the WEB_VIEW_KEY parameter
As you can see from the screenshot below, this parameter will be auto-generated for you if you edit and save this field in the Advanced Setting page.