2017-12-22 02:24:30 +01:00
|
|
|
# Stream message
|
|
|
|
|
|
|
|
Send a message to a stream.
|
|
|
|
|
|
|
|
## Usage examples
|
2017-11-08 19:03:03 +01:00
|
|
|
<div class="code-section" markdown="1">
|
|
|
|
<ul class="nav">
|
|
|
|
<li data-language="curl">curl</li>
|
|
|
|
<li data-language="python">Python</li>
|
|
|
|
<li data-language="zulip-send">zulip-send</li>
|
|
|
|
<li data-language="javascript">JavaScript</li>
|
|
|
|
</ul>
|
|
|
|
<div class="blocks">
|
|
|
|
|
|
|
|
<div data-language="curl" markdown="1">
|
|
|
|
|
|
|
|
```
|
|
|
|
curl {{ api_url }}/v1/messages \
|
|
|
|
-u BOT_EMAIL_ADDRESS:BOT_API_KEY \
|
|
|
|
-d "type=stream" \
|
|
|
|
-d "to=Denmark" \
|
|
|
|
-d "subject=Castle" \
|
|
|
|
-d "content=Something is rotten in the state of Denmark."
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div data-language="python" markdown="1">
|
|
|
|
```python
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import zulip
|
|
|
|
import sys
|
|
|
|
|
|
|
|
# Keyword arguments 'email' and 'api_key' are not required if you are using ~/.zuliprc
|
|
|
|
client = zulip.Client(email="othello-bot@example.com",
|
|
|
|
api_key="a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5",
|
|
|
|
site="{{ api_url }}")
|
|
|
|
|
|
|
|
# Send a stream message
|
|
|
|
client.send_message({
|
|
|
|
"type": "stream",
|
|
|
|
"to": "Denmark",
|
|
|
|
"subject": "Castle",
|
|
|
|
"content": "Something is rotten in the state of Denmark."
|
|
|
|
})
|
|
|
|
|
|
|
|
# Print each message the user receives
|
|
|
|
# This is a blocking call that will run forever
|
|
|
|
client.call_on_each_message(lambda msg: sys.stdout.write(str(msg) + "\n"))
|
|
|
|
|
|
|
|
# Print every event relevant to the user
|
|
|
|
# This is a blocking call that will run forever
|
|
|
|
# This will never be reached unless you comment out the previous line
|
|
|
|
client.call_on_each_event(lambda msg: sys.stdout.write(str(msg) + "\n"))
|
|
|
|
```
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div data-language="zulip-send" markdown="1"> You can use `zulip-send`
|
|
|
|
(available after you `pip install zulip`) to easily send Zulips from
|
|
|
|
the command-line, providing the message content via STDIN.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
zulip-send --stream Denmark --subject Castle \
|
|
|
|
--user othello-bot@example.com --api-key a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Passing in the message on the command-line
|
|
|
|
|
|
|
|
If you'd like, you can also provide the message on the command-line with the `-m` flag, as follows:
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
zulip-send --stream Denmark --subject Castle \
|
|
|
|
-m "Something is rotten in the state of Denmark." \
|
|
|
|
--user othello-bot@example.com --api-key a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5
|
|
|
|
```
|
|
|
|
|
|
|
|
You can omit the `user` and `api-key` arguments if you have a `~/.zuliprc` file.
|
|
|
|
|
|
|
|
See also the [full API endpoint documentation.](/api/endpoints).
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div data-language="javascript" markdown="1">
|
|
|
|
More examples and documentation can be found [here](https://github.com/zulip/zulip-js).
|
|
|
|
```js
|
|
|
|
const zulip = require('zulip');
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
username: 'othello-bot@example.com',
|
|
|
|
apiKey: 'a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5',
|
|
|
|
realm: '{{ api_url }}'
|
|
|
|
};
|
|
|
|
|
|
|
|
const client = zulip(config);
|
|
|
|
|
|
|
|
// Send a message
|
|
|
|
client.messages.send({
|
|
|
|
to: 'Denmark',
|
|
|
|
type: 'stream',
|
|
|
|
subject: 'Castle',
|
|
|
|
content: 'Something is rotten in the state of Denmark.'
|
|
|
|
});
|
|
|
|
|
|
|
|
// Register queue to receive messages for user
|
|
|
|
client.queues.register({
|
|
|
|
event_types: ['message']
|
|
|
|
}).then((res) => {
|
|
|
|
// Retrieve events from a queue
|
|
|
|
// Blocking until there is an event (or the request times out)
|
|
|
|
client.events.retrieve({
|
|
|
|
queue_id: res.queue_id,
|
|
|
|
last_event_id: -1,
|
|
|
|
dont_block: false
|
|
|
|
}).then(console.log);
|
|
|
|
});
|
|
|
|
```
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|