Amine.B
Amine.B

Reputation: 63

Webhook script langages for Dialogflow

I look forward to develop a script for Google Assistant. In what languages could I develop the script?

Upvotes: 2

Views: 178

Answers (1)

Prisoner
Prisoner

Reputation: 50711

Any language you want!

Well, pretty much. It has to meet two criteria, but most programming languages do these days:

  1. It needs to be able to be accessed via HTTPS on the public web.
  2. It needs to be able to understand a JSON HTTP body that is sent to it and reply with a JSON encoded response.

Google provides a library if you are developing with JavaScript/node.js, but those just provide programmatic ways to handle the HTTP body contents and generate the response.

But you can certainly get the information you want from the content sent to your webhook and then reply using the response format.

Upvotes: 3

Related Questions