| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 1.1.0 _ 2021-10-04 source code.tar.gz | 2021-10-04 | 426.4 kB | |
| 1.1.0 _ 2021-10-04 source code.zip | 2021-10-04 | 496.1 kB | |
| README.md | 2021-10-04 | 1.0 kB | |
| Totals: 3 Items | 923.5 kB | 1 | |
messaging-api-line
-
[new] Added support for broadcast API:
:::js await client.broadcast([ { type: 'text', text: 'Hello, world1', }, ]);
-
[new] Added
.getBotInfo()::::js await client.getBotInfo(); // { // "userId": "Ub9952f8...", // "basicId": "@216ru...", // "displayName": "Example name", // "pictureUrl": "https://obs.line-apps.com/...", // "chatMode": "chat", // "markAsReadMode": "manual" // }
-
[new] Added support for webhook APIs:
:::js await client.getWebhookEndpointInfo(); // { // "endpoint": "https://example.com/test", // "active": true // } await client.setWebhookEndpointUrl('https://www.example.com/callback'); await client.testWebhookEndpoint(); // { // "success": true, // "timestamp": "2020-09-30T05:38:20.031Z", // "statusCode": 200, // "reason": "OK", // "detail": "200" // }