Skip to Content
0
Jul 07, 2020 at 05:18 PM

Webchat - Button content does not comes up when type is web_url.

63 Views Last edit Jul 08, 2020 at 06:58 AM 2 rev

From my webhook (api is written in Java) i am sending below json to display content as button with type as web_url. In my chat window only title comes up, button with title "Google Home Page" does not comes up. Any help or leads will be great!

{
	"replies": [
		{
			"type": "buttons",
			"content": {
				"title": "Please Follow Below KBA's'",
				"buttons": [
					{
						"title": "Google Home Page",
						"type": "web_url",
						"value": "www.google.com"
					}
				]
			}
		}
	],
	"conversation": {
		"language": "en",
		"memory": {
			"user": "Bob"
		}
	}
}