zulip/api_docs/non-webhook-integrations.md

54 lines
2.2 KiB
Markdown
Raw Normal View History

2018-10-17 04:38:32 +02:00
# Non-webhook integrations
[Incoming webhook integrations](/api/incoming-webhooks-overview) are the
fastest to write, but sometimes a third-party product just doesn't support
them. Zulip supports several other types of integrations.
2018-10-17 04:38:32 +02:00
1. **Python script integrations**
(examples: SVN, Git), where we can get the service to call our integration
(by shelling out or otherwise), passing in the required data. Our preferred
2017-08-01 01:25:35 +02:00
model for these is to ship these integrations in the
[Zulip Python API distribution](https://github.com/zulip/python-zulip-api/tree/main/zulip),
2017-08-01 01:25:35 +02:00
within the `integrations` directory there.
2018-10-17 04:38:32 +02:00
1. **Plugin integrations** (examples:
Jenkins, Hubot, Trac) where the user needs to install a plugin into their
existing software. These are often more work, but for some products are the
only way to integrate with the product at all.
2018-10-17 04:38:32 +02:00
For plugin integrations, usually you will need to consult the
documentation for the third party software in order to learn how to
write the integration.
1. **Interactive bots**. See [Writing bots](/api/writing-bots).
2018-10-17 04:38:32 +02:00
A few notes on how to do these:
* You should always send messages by POSTing to URLs of the form
`https://zulip.example.com/v1/messages/`.
* We usually build Python script integrations with (at least) 2 files:
2017-01-04 17:58:29 +01:00
`zulip_foo_config.py` containing the configuration for the
integration including the bots' API keys, plus a script that reads
from this configuration to actually do the work (that way, it's
possible to update the script without breaking users' configurations).
2018-10-17 04:38:32 +02:00
* Be sure to test your integration carefully and
[document](https://zulip.readthedocs.io/en/latest/documentation/integrations.html)
2018-10-17 04:38:32 +02:00
how to install it.
* You should specify a clear HTTP User-Agent for your integration. The
user agent should at a minimum identify the integration and version
number, separated by a slash. If possible, you should collect platform
information and include that in `()`s after the version number. Some
examples of ideal UAs are:
2018-10-17 04:38:32 +02:00
```
ZulipDesktop/0.7.0 (Ubuntu; 14.04)
ZulipJenkins/0.1.0 (Windows; 7.2)
ZulipMobile/0.5.4 (Android; 4.2; maguro)
```
* The [general advice](/api/incoming-webhooks-overview#general-advice) for
webhook integrations applies here as well.