Introduction of “n8n-nodes-chatwork”

Tram Ho

What is Chatwork? Why have this article?

Chatwork is an all-in-one platform: chat, assign tasks, voice / video call, and file sharing.”

Since it is a common tool used to communicate with members of an organization, there will be many cases where it is necessary to integrate external services and systems into Chatwork. For example: If there is a new order in the sales system, text the employee in charge on Chatwork, if there is an issue on the project, send a message to the technical team …

Currently, Chatwork has a public api, a webhook that is quite complete to integrate with external systems. Chatwork’s public usage is also pretty straightforward. The problem is only when you have multiple systems, services need to be integrated, or you use the provided services you have very few options on.

In the case of the systems and services you own, you can integrate the Chatwork api directly, but you will have to rewrite the integration for multiple systems, not to mention that you have more than one. the “bot”. Currently there are many libraries supporting working with Chatwork api:

These libraries only “bundle” you with Chatwork’s public api, you still have to do most of the integration logic. Including the integration as part of the system poses some risks.

If you use a third party service, for example Github, and you want to integrate it with Chatwork. For example, Github, this service already has webhooks and api for integration, but to integrate them with Chatwork, you need to build an intermediary system to integrate Github and Chatwork. If you don’t just use a Github service, you will need more than an intermediary integration service or further complicate the integration system.

With the above problems, this article will introduce n8n and n8n-nodes-chatwork. n8n will replace the middleware integration, with independent workflows, a one-time build can integrate a lot of services.

What is n8n?

n8n (full name ” Nodemation “) is a tool that generates jobs automatically, and joins those jobs into a string, a string called workflows . Workflows can be run automatically, n8n repeating your workflows every week, every day, every hour, or based on an event you install. It will save you a lot of time.

In particular, you can manually install n8n on your server and be able to customize use on it.

What is n8n-nodes-chatwork?

Currently, n8n supports a lot of “nodes”, supporting many popular services.

Here is a list of all supported services, at the time of writing:

But in this list there is no Chatwork, to integrate Chatwork into this tool, we can use the HTTP Request node to communicate with the Chatwork api. But these have many inconveniences: Having to write over and over again, manage the api key …

This is why n8n-nodes-chatwork was created, this node will make it easier to integrate with Chatwork in n8n.

n8n-nodes-chatwork is an n8n custom node, which means that this node will not be the default node when you use n8n. Currently you can only use this node if you install n8n on your server yourself.

How to install you can refer to this link: n8n-nodes-chatwork

summary

This article is only for an introduction, you can learn by yourself to install n8n and use n8n-nodes-chatwork.

I am developing n8n-nodes-chatwork in my free time, it would be fun if someone is interested in commenting and working together to improve the quality of this node.

These are the completed api:

The source code of the project is public at the link: https://github.com/hoangsetup/n8n-nodes-chatwork

Currently, there are quite a few things to do:

The project is written in Typescript, the starting document to participate in product development can be read at this link: https://github.com/hoangsetup/n8n-nodes-chatwork/blob/master/CONTRIBUTING.md

In the following article, I will talk in more detail about how to participate in developing n8n-nodes-chatwork.

I post this article here because Viblo is a community with a large number of members using Chatwork, hoping to find users for this n8n-nodes-chatwork package.

Article posted by the same author at https://codetheworld.io/gioi-thieu-n8n-nodes-chatwork.html .

Share the news now

Source : Viblo