2017-05-29 02:27:03 +03:00
|
|
|
# III Client
|
2017-10-03 22:00:21 +04:00
|
|
|
[](https://www.npmjs.com/package/iii-client)
|
|
|
|
[](https://travis-ci.org/valentineus/iii-client)
|
|
|
|
[](https://www.codacy.com/app/valentineus/iii-client)
|
|
|
|
[](https://www.codacy.com/app/valentineus/iii-client/files)
|
|
|
|
[](https://gitter.im/valentineus/iii-client)
|
2017-05-29 01:46:00 +03:00
|
|
|
|
|
|
|
Simple API for communicating with the bot of the \"iii.ru\" service.
|
|
|
|
|
|
|
|
## Features
|
2017-10-03 22:03:11 +04:00
|
|
|
- Multiplatform library.
|
2017-05-29 01:46:00 +03:00
|
|
|
- A small and light library.
|
2017-09-29 01:09:32 +04:00
|
|
|
- Getting session ID.
|
|
|
|
- Sending and receiving messages.
|
2017-05-29 01:46:00 +03:00
|
|
|
|
|
|
|
## Installation
|
2017-09-28 21:28:18 +04:00
|
|
|
NodeJS:
|
2017-05-29 01:46:00 +03:00
|
|
|
```bash
|
|
|
|
npm install --save iii-client
|
|
|
|
```
|
|
|
|
|
2017-09-28 21:28:18 +04:00
|
|
|
Browser:
|
|
|
|
```html
|
|
|
|
<script src="https://unpkg.com/iii-client@latest/dist/bundle.js">
|
2017-09-29 01:09:32 +04:00
|
|
|
/* iiiClient - This is the global name for accessing the package */
|
2017-09-28 21:28:18 +04:00
|
|
|
</script>
|
|
|
|
```
|
|
|
|
|
2017-05-29 01:46:00 +03:00
|
|
|
## Using
|
2017-06-04 19:03:38 +00:00
|
|
|
An example of a connection, receiving session identification and sending a bot message:
|
2017-05-29 01:46:00 +03:00
|
|
|
```javascript
|
2017-09-29 01:09:32 +04:00
|
|
|
import { connect, send } from 'iii-client';
|
|
|
|
|
|
|
|
var uuid = '109cd867-0ef3-4473-af71-7543a9b2fccd';
|
2017-10-09 19:35:38 +04:00
|
|
|
var cuid = '0340feab-b09e-4960-96e9-c9518b1fb157';
|
2017-09-29 01:09:32 +04:00
|
|
|
var text = 'Hello, World!';
|
|
|
|
|
|
|
|
/* We connect to the system and get a session */
|
|
|
|
connect(uuid, (request) => {
|
2017-10-09 19:35:38 +04:00
|
|
|
console.info(`Session: ${request.result.cuid}`);
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Send the message and process the response */
|
|
|
|
send(cuid, text, (answer) => {
|
|
|
|
console.info(`Answer: ${answer.result.text.value}`);
|
2017-09-29 01:09:32 +04:00
|
|
|
});
|
2017-05-29 01:46:00 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
## API
|
2017-09-29 01:09:32 +04:00
|
|
|
## Functions
|
|
|
|
<dl>
|
|
|
|
<dt>
|
|
|
|
<a href="#connect">connect(uuid, callback)</a>
|
|
|
|
</dt>
|
|
|
|
<dd>
|
|
|
|
<p>Connection to the service and retrieves the session identifier.</p>
|
|
|
|
</dd>
|
|
|
|
<dt>
|
|
|
|
<a href="#send">send(cuid, text, callback)</a>
|
|
|
|
</dt>
|
|
|
|
<dd>
|
|
|
|
<p>Sends a message to bot and returns a response.</p>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
<a name="connect"></a>
|
|
|
|
|
|
|
|
## connect(uuid, callback)
|
|
|
|
Connection to the service and retrieves the session identifier.
|
2017-07-29 04:39:18 +04:00
|
|
|
|
|
|
|
| Param | Type | Description |
|
|
|
|
| --- | --- | --- |
|
2017-09-29 01:09:32 +04:00
|
|
|
| uuid | <code>String</code> | Bot ID |
|
|
|
|
| callback | <code>function</code> | Function handler |
|
2017-07-29 04:39:18 +04:00
|
|
|
|
2017-09-29 01:09:32 +04:00
|
|
|
<a name="send"></a>
|
2017-07-29 04:39:18 +04:00
|
|
|
|
2017-09-29 01:09:32 +04:00
|
|
|
## send(cuid, text, callback)
|
|
|
|
Sends a message to bot and returns a response.
|
2017-05-29 01:46:00 +03:00
|
|
|
|
2017-07-29 04:39:18 +04:00
|
|
|
| Param | Type | Description |
|
|
|
|
| --- | --- | --- |
|
2017-09-29 01:09:32 +04:00
|
|
|
| cuid | <code>String</code> | Session ID |
|
|
|
|
| text | <code>String</code> | Send messages |
|
|
|
|
| callback | <code>function</code> | Function handler |
|
2017-06-05 16:38:03 +00:00
|
|
|
|
2017-05-29 01:46:00 +03:00
|
|
|
## License
|
2017-05-30 16:03:39 +03:00
|
|
|
[](https://github.com/eslint/eslint)
|
2017-05-29 07:02:09 +03:00
|
|
|
|
2017-07-29 04:39:18 +04:00
|
|
|
[MIT](LICENSE.md).
|
|
|
|
Copyright (c)
|
|
|
|
[Valentin Popov](https://valentineus.link/).
|