Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Latest commit

 

History

History

webhook-2-db

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Webhook

Introduction

This shows how to setup a webhook, so that your integration can be invoked externally.

Screencast of this Quickstart

Link to a screencast of this quickstart on our youtube channel:

Webhook Quickstart

<<Click to Play>>

Getting Started

In the Syndesis UI navigate to Integrations and click on the Import button in the right top corner. Now you can select the Webhook2Db-export.zip file and start the import. Alternatively you can start with a create a new integration, and select the webhook as it's start connection.

Select JSON Instance and add an example JSON message such as:

{ "task":"some value"}

Click Done, and now add the Postgres SampleDB connection and use

INSERT INTO TODO ( task ) VALUES ( :#task )

Finally add a Datamapper in between and connect

task -> task

DataMapper Figure 1. Mapping task to task.

Now publish the integration calling it Webhook2Db.

On a succesful deployment it will show an externalURL.

externalURL Figure 2. ExternalURL of the webhook.

Put this into your buffer and create a env param like

externalURL=https://i-webhook2db-syndesis.192.168.42.101.nip.io/webhook/knmJINAonaMxWCtMEaR78QIAZbL8RgdVUDVsTDoUaig1IPHvCe

Invoke Webhook

Now invoke the webhook with an HTTP POST using the cmdline utility called curl setting the task to "my new task!"

curl -k --header "Content-Type: application/json" --request POST --data '{ "task":"my new task!"}' $externalURL

You should see the new task in the todo app. You can obtain the URL to this app using

echo https://todo-syndesis.`minishift ip`.nip.io/

Todo App Figure 3. Todo App with new Tasks appearing

What did we learn?

  • We learned how to create a webhook to invoke an integration.

Extra Credit

Add a Task in the Todo app by using Google assistant and nothing but your voice.

@ni_ferraro created a nice demo using https://ifttt.com to inspire you

Google assistant Quickstart