Harry Stuart
Harry Stuart

Reputation: 1929

Dialogflow disable Google Assistant

I am trying to enable webhook fulfillment in my Dialogflow agent. However, whenever I go to input the URL of my service, I get an error saying You can use only https:// in fulfillment url when "Google Assistant" integration enabled. I have no interest in using the Google Assistant integration. So how can I disable it so that I can send webhooks to my http:// service?

enter image description here

Thanks

Upvotes: 0

Views: 1106

Answers (2)

m b
m b

Reputation: 310

you could use ngrok to change your http://localhost:8080 to https and use it in fulfillment.

Upvotes: 0

Ssh-uunen
Ssh-uunen

Reputation: 311

I just had the same issue, if you don't need a secure connection via HTTPS here is how to remove Google Assistant integration and use a simple HTTP webhook fulfillment :

  1. Export your DialogFlow bot :

export

  1. Delete the bot:

enter image description here

  1. Create a new empty bot and set a http webhook :

enter image description here

  1. Import your previously exported bot :

enter image description here

  1. Now you should have your previous bot working & released from Google Assistant

Upvotes: 1

Related Questions