Update Notifier bridge DSN in readme

This commit is contained in:
Jérémy Romey 2020-08-27 16:44:35 +02:00
parent 53a8f7d490
commit eedd72cd98
No known key found for this signature in database
GPG Key ID: 4DC57D63BA79D810
5 changed files with 47 additions and 7 deletions

View File

@ -3,7 +3,19 @@ Google Chat Notifier
Provides Google Chat integration for Symfony Notifier.
googlechat://ACCESS_KEY:ACCESS_TOKEN@default/SPACE?threadKey=THREAD_KEY
DSN example
-----------
```
// .env file
INFOBIP_DSN=googlechat://ACCESS_KEY:ACCESS_TOKEN@default/SPACE?threadKey=THREAD_KEY
```
where:
- `ACCESS_KEY` is your Google Chat access key
- `ACCESS_TOKEN` is your Google Chat access token
- `SPACE` is the Google Chat space
- `THREAD_KEY` is the the Google Chat message thread to group messages into a single thread
Resources
---------

View File

@ -3,13 +3,18 @@ Infobip Notifier
Provides Infobip integration for Symfony Notifier.
DSN should be as follow:
DSN example
-----------
```
infobip://authtoken@infobiphost?from=0611223344
// .env file
INFOBIP_DSN=infobip://AUTH_TOKEN@INFOBIP_HOST?from=FROM
```
`authtoken` and `infobiphost` are given by Infobip ; `from` is the sender.
where:
- `AUTH_TOKEN` is your Infobip auth token
- `INFOBIP_HOST` is your Infobip host
- `FROM` is the sender
Resources
---------

View File

@ -11,6 +11,10 @@ DSN example
LINKEDIN_DSN='linkedin://ACCESS_TOKEN:USER_ID@default'
```
where:
- `ACCESS_TOKEN` is your LinkedIn access token
- `USER_ID` is your LinkedIn user id
Resources
---------

View File

@ -3,13 +3,19 @@ Mobyt Notifier
Provides [Mobyt](https://www.mobyt.it/en/) integration for Symfony Notifier.
DSN should be as follow:
DSN example
-----------
```
mobyt://USER_KEY:ACCESS_TOKEN@default?from=FROM
// .env file
MOBYT_DSN=mobyt://USER_KEY:ACCESS_TOKEN@default?from=FROM&type_quality=TYPE_QUALITY
```
`USER_KEY` and `ACCESS_TOKEN` are given by Mobyt ; `FROM` is the sender name.
where:
- `USER_KEY` is your Mobyt user key
- `ACCESS_TOKEN` is your Mobyt access token
- `TYPE_QUALITY` is the quality : `N` for high, `L` for medium, `LL` for low (default: `L`)
- `FROM` is the sender
Resources
---------

View File

@ -3,6 +3,19 @@ Zulip Notifier
Provides Zulip integration for Symfony Notifier.
DSN example
-----------
```
// .env file
ZULIP_DSN=zulip://EMAIL:TOKEN@default?channel=Channel
```
where:
- `EMAIL` is your Zulip email
- `TOKEN` is your Zulip token
- `Channel` is the channel
Resources
---------