Questions tagged [dialogflow-es]

Dialogflow ES is the "classic" version of Dialogflow from Google, providing a Natural Language Understanding system you can integrate with your programs, and allowing you to build simple conversational agents or chatbots for a variety of platforms using an API or web-based UI. For the more complicated flow-based tool from Google, see the dialogflow-cx tag. For specific issues writing webhook fulfillments, see the dialogflow-es-fulfillment tag.

Dialogflow ES is a basic Natural Language Understanding system that is suitable for small to medium and simple to moderately complex conversational agents. Intents are the building blocks of conversation design, and contexts are used to control conversation paths.

Formerly known as just "Dialogflow", and before that as "api.ai", Dialogflow ES consists of several components, including

  • An API that allows you to determine Intents from a text or spoken phrase
  • Some pre-built integrations with common chat or conversation platforms
  • An API and web-based UI that lets you build and manage the NLU model
  • The ability to apply business logic through webhook fulfillments

Questions specifically about the fulfillment webhook should be tagged .

There is a more advanced version, Dialogflow CX, which offers a more complicated conversation design model based around flows, and a more visual design tool. It is, however, completely incompatible with Diallogflow ES. Questions about Dialogflow CX should be tagged .

5530 questions
7
votes
1 answer

How to identify unique users with Diagflow

I am trying to make an assistant app and was using the cloud firestore service of firebase to send the response back to my app using webhook as fulfilment. I have used 'session' parameter in request JSON according to this documentation and sending…
Lakshay Nagpal
  • 305
  • 5
  • 10
7
votes
2 answers

Google Dialogflow: The Application Default Credentials are not available

Hi I've an issue with Java SDK library for Google Cloud. I need to query Dialogflow V2 API and I'm using this SDK (https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master) I've followed the instructions in order to set…
HK15
  • 737
  • 1
  • 14
  • 32
7
votes
2 answers

Dialogflow multi-language integration

I have a working agent in two languages. But when I use Integrations option with Twitter and Facebook only default language is available. How can I setup Dialogflow to have both languages working on Twitter and Facebook? Note: Integration with…
7
votes
2 answers

Google review widget for web-application | write google review using google place api

I created a review portal for my customers to give me a review and ratings on my service via different social networking sites. Currently I am focusing on google review to be collected via a google widget/flow, This above image is showing the…
7
votes
1 answer

Dialogflow v2 API + Actions v2 API: MalformedResponse 'final_response' must be set

I'm trying to start working on Google Actions v2 API together with Dialgoflow v2 API. I have the following example (so far in Dialogflow -> Fulfillment Webhook) taken from official Google Actions Migration Guide , but unfortunately I keep getting…
miro
  • 809
  • 10
  • 25
7
votes
4 answers

New line in basic card in google actions

I would like to have new line items in the basic card . Google's documentation states: A limited subset of markdown is supported: New line with a double space *bold* italics I am able to get the bold and italics working but the new line is not…
rahulmr
  • 681
  • 1
  • 7
  • 19
7
votes
3 answers

How to call webhook Rest URl of localhost with Dialog Flow?

I am trying to call my Rest webhook from dialog flow console. I know it is feasible with deployment to any public ip. But how to test the same without hosting the webhook to any public IP, and test it via localhost:8080/webhook?
Aditya Khajuria
  • 351
  • 1
  • 7
  • 19
6
votes
1 answer

How can we integrate Google dialogflow v2 api in iOS application?

I want to integrate google Dialogflow chatbot in my iOS application, I have setup everything in google console but don't know how to implement it in iOS(swift) side, can anyone know is there any sdk or document available through which we can…
6
votes
2 answers

In Dialogflow reason for error message: "Permission 'cloudfunctions.functions.setIamPolicy' denied on resource dialogflowFirebaseFulfillment

I was trying webhook to send email in chatbot (dialogflow). Getting following error (log entry) . What may be the reson? message: "Permission 'cloudfunctions.functions.setIamPolicy' denied on resource…
6
votes
0 answers

How to re-order Intent response messages or auto chain Intents in Dialogflow?

I am using Dialogflow and have x amount of Intents setup in a particular structure including both contextless intents & follow-up intents. With this I have 1 default "Welcome Intent" that has a simple Text Response. However I also have a Google…
baikho
  • 5,203
  • 4
  • 40
  • 47
6
votes
1 answer

Is there a way to trigger different query while filling the required slots in dialogflow

I have an intent orderPizza and entities as @pizzaOptions @pizzaSize @qty happy path (working fine) user: order 2 pizza bot: which pizza you want? user: pepperoni bot: and pizza size? user: large bot: okay! your order for 2 large pepperoni pizza has…
Vikas Patidar
  • 203
  • 1
  • 13
6
votes
6 answers

Flutter: Dialogflow SDK returning Tried calling: []("queryText") error

I'm trying to use the flutter_dialogflow package with Dialogflow v2. I've taken all the necessary steps in my view. I need help in knowing if I'm missing out on anything. My Code - import 'package:flutter/material.dart'; import…
Abbas
  • 773
  • 6
  • 16
6
votes
1 answer

Using DialogFlow Rest API with API KEY

I'm trying to use DialogFlow REST API with api key auth method. For example https://dialogflow.googleapis.com/v2/projects/projectId/agent?key=[YOUR_API_KEY] but It desn't work. This is the result { "error": { "code": 401, …
Lorenzo Vannucchi
  • 359
  • 1
  • 3
  • 11
6
votes
2 answers

Webhook call failed: URL_REJECTED error in DialogFlow v2 Fulfillments

Error description Upon calling DialogFlow v2 detectIntent API, we randomly get an internal error with status code 13: Webhook call failed. Fetch failure with no HTTP status code. Status: State: URL_REJECTED Reason: 67 This error seems to happen…
6
votes
2 answers

Dialogflow send custom payload json from webhook

From Dialogflow console, i can set a custom payload like this How can i send the exact same response from a webhook custom integration. I tried sending it from Flask as JSON but it didn't work.
Wassim Seifeddine
  • 1,002
  • 12
  • 25