Broid Integrations is an open source project providing a suite of Activity Streams 2 libraries for unified communications among a vast number of communication platforms.
Connect your App to Multiple Messaging Channels with One OpenSource Language.
| Simple | Image | Video | Buttons | Location | Phone number |
|---|---|---|---|---|---|
| ✅ | ✅ | ✅ |
Buttons, Location, Phone number are platform limitations.
Image, Video are supported as a simple message
Thread as supported
npm install --save @broid/flowdockconst BroidFlowdock = require('@broid/flowdock');
const flowdock = new broidFlowdock({
token: "<access_token>"
});
flowdock.connect()
.subscribe({
next: data => console.log(data),
error: err => console.error(`Something went wrong: ${err.message}`),
complete: () => console.log('complete'),
});Options available
| name | Type | default | Description |
|---|---|---|---|
| serviceID | string | random | Arbitrary identifier of the running instance |
| logLevel | string | info |
Can be : fatal, error, warn, info, debug, trace |
| token | string | Your access token |
flowdock.listen()
.subscribe({
next: data => console.log(`Received message: ${data}`),
error: err => console.error(`Something went wrong: ${err.message}`),
complete: () => console.log('complete'),
});To send a message, the format should use the broid-schemas.
const formatted_message = {
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Create",
"generator": {
"id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
"type": "Service",
"name": "flowdock"
},
"object": {
"type": "Note",
"content": "hello world",
"tag": [
{
"id": "my_tag",
"name": "my_tag",
"type": "Object"
}
]
},
"to": {
"id": "bd9b6be2-f2b9-4018-ae6d-372aa68e3f5a",
"type": "Group"
}
};
flowdock.send(formatted_message)
.then(() => console.log("ok"))
.catch(err => console.error(err));- A direct message received from Sally
{
"@context": "https://www.w3.org/ns/activitystreams",
"published": 1483589416,
"type": "Create",
"generator": {
"id": "73301570-7ec7-45ce-b035-2ff4831306ab",
"type": "Service",
"name": "flowdock"
},
"actor": {
"id": "2932680926",
"type": "Person",
"name": "Sally Dude"
},
"target": {
"id": "bd9b6be2-f2b9-4018-ae6d-372aa68e3f5a",
"name": "Main",
"type": "Group"
},
"object": {
"content": "hello",
"id": "77",
"type": "Note",
"context": {
"content": "E_eqrrwKu2nrtwp-YpfSG9JN53-",
"name": "thread",
"type": "Object"
}
}
}- A private message received from Sally
{
"@context": "https://www.w3.org/ns/activitystreams",
"published": 1483590793,
"type": "Create",
"generator": {
"id": "55c5e6a2-a1a3-4fc6-b94a-7011d9faa0a2",
"type": "Service",
"name": "flowdock"
},
"actor": {
"id": "2932680926",
"type": "Person",
"name": "Sally Dude"
},
"target": {
"id": "2932680926",
"type": "Person",
"name": "Sally Dude"
},
"object": {
"content": "hello",
"id": "9492845253",
"type": "Note"
}
}- A message received from Sally with hashtag
{
"@context": "https://www.w3.org/ns/activitystreams",
"published": 1483589416,
"type": "Create",
"generator": {
"id": "73301570-7ec7-45ce-b035-2ff4831306ab",
"type": "Service",
"name": "flowdock"
},
"actor": {
"id": "2932680926",
"type": "Person",
"name": "Sally Dude"
},
"target": {
"id": "bd9b6be2-f2b9-4918-ae6d-370aa68e3f5a",
"name": "Main",
"type": "Group"
},
"object": {
"content": "hello",
"id": "77",
"type": "Note",
"context": {
"content": "E_eqrrwKu2nrtwp-YpfSG9JN53-",
"name": "thread",
"type": "Object"
},
"tag": [
{
"id": "tag",
"name": "tag",
"type": "Object"
},
{
"id": "tag1",
"name": "tag1",
"type": "Object"
}
]
}
}- Send a simple message
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Create",
"generator": {
"id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
"type": "Service",
"name": "flowdock"
},
"object": {
"type": "Note",
"content": "hello world",
"tag": [
{
"id": "my_tag",
"name": "my_tag",
"type": "Object"
}
]
},
"to": {
"id": "bd9b6be2-f2b9-4018-ae6d-372aa68e3f5a",
"type": "Group"
}
}- Send a private message
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Create",
"generator": {
"id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
"type": "Service",
"name": "flowdock"
},
"object": {
"type": "Note",
"content": "hello world"
},
"to": {
"id": "266836",
"type": "Person"
}
}- Update a message
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Update",
"generator": {
"id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
"type": "Service",
"name": "flowdock"
},
"object": {
"id": "58",
"type": "Note",
"content": "edited!"
},
"to": {
"id": "bd9b6be2-f2b9-4018-ae6d-372aa68e3f5a",
"type": "Group"
}
}- Delete a message
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Delete",
"generator": {
"id": "f6e92eb6-f69e-4eae-8158-06613461cf3a",
"type": "Service",
"name": "flowdock"
},
"object": {
"id": "58",
"type": "Note",
"content": ""
},
"to": {
"id": "bd9b6be2-f2b9-4018-ae6d-372aa68e3f5a",
"type": "Group"
}
}Broid is an open source project. Broid wouldn't be where it is now without contributions by the community. Please consider forking Broid to improve, enhance or fix issues. If you feel like the community will benefit from your fork, please open a pull request.
And because we want to do the better for you. Help us improving Broid by sharing your feedback on our Integrations GitHub Repo and let's build Broid together!
Make sure that you're read and understand the Code of Conduct.
Copyright (c) 2016-2017 Broid.ai
This project is licensed under the AGPL 3, which can be found here.