Skip to content

Commit e7d6ec7

Browse files
committed
fix: class constructions on readme
1 parent 9f1fcd7 commit e7d6ec7

File tree

3 files changed

+35
-18
lines changed

3 files changed

+35
-18
lines changed

README.md

+26-11
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ Then, create a `MessengerClient` to call Messenger APIs:
4747
const { MessengerClient } = require('messaging-api-messenger');
4848

4949
// get accessToken from facebook developers website
50-
const client = MessengerClient.connect(accessToken);
50+
const client = new MessengerClient({
51+
accessToken: 'ACCESS_TOKEN',
52+
});
5153

5254
client.sendText(userId, 'Hello World').then(() => {
5355
console.log('sent');
@@ -78,7 +80,10 @@ Then, create a `LineClient` to call LINE APIs:
7880
const { LineClient } = require('messaging-api-line');
7981

8082
// get accessToken and channelSecret from LINE developers website
81-
const client = LineClient.connect(accessToken, channelSecret);
83+
const client = new LineClient({
84+
accessToken: 'ACCESS_TOKEN',
85+
channelSecret: 'CHANNEL_SECRET',
86+
});
8287

8388
client.pushText(userId, 'Hello World').then(() => {
8489
console.log('pushed');
@@ -110,9 +115,9 @@ const { SlackOAuthClient } = require('messaging-api-slack');
110115

111116
// get access token by setup OAuth & Permissions function to your app.
112117
// https://api.slack.com/docs/oauth
113-
const client = SlackOAuthClient.connect(
114-
'xoxb-000000000000-xxxxxxxxxxxxxxxxxxxxxxxx'
115-
);
118+
const client = new SlackOAuthClient({
119+
accessToken: 'xoxb-000000000000-xxxxxxxxxxxxxxxxxxxxxxxx',
120+
});
116121

117122
client.postMessage('#random', 'Hello World').then(() => {
118123
console.log('sent');
@@ -124,9 +129,9 @@ const { SlackWebhookClient } = require('messaging-api-slack');
124129

125130
// get webhook URL by adding a Incoming Webhook integration to your team.
126131
// https://my.slack.com/services/new/incoming-webhook/
127-
const client = SlackWebhookClient.connect(
128-
'https://hooks.slack.com/services/XXXXXXXX/YYYYYYYY/zzzzzZZZZZ'
129-
);
132+
const client = new SlackWebhookClient({
133+
url: 'https://hooks.slack.com/services/XXXXXXXX/YYYYYYYY/zzzzzZZZZZ',
134+
});
130135

131136
client.sendText('Hello World').then(() => {
132137
console.log('sent');
@@ -157,7 +162,9 @@ Then, create a `TelegramClient` to call Telegram APIs:
157162
const { TelegramClient } = require('messaging-api-telegram');
158163

159164
// get accessToken from telegram [@BotFather](https://telegram.me/BotFather)
160-
const client = TelegramClient.connect('12345678:AaBbCcDdwhatever');
165+
const client = new TelegramClient({
166+
accessToken: '12345678:AaBbCcDdwhatever',
167+
});
161168

162169
client.sendMessage(chatId, 'Hello World').then(() => {
163170
console.log('sent');
@@ -188,7 +195,12 @@ Then, create a `ViberClient` to call Viber APIs:
188195
const { ViberClient } = require('messaging-api-viber');
189196

190197
// get authToken from the "edit info" screen of your Public Account.
191-
const client = ViberClient.connect(authToken);
198+
const client = new ViberClient({
199+
accessToken: 'AUTH_TOKEN',
200+
sender: {
201+
name: 'Sender',
202+
},
203+
});
192204

193205
client.sendText(userId, 'Hello World').then(() => {
194206
console.log('sent');
@@ -219,7 +231,10 @@ Then, create a `WechatClient` to call Wechat APIs:
219231
const { WechatClient } = require('messaging-api-wechat');
220232

221233
// get appId, appSecret from「微信公众平台-开发-基本配置」page
222-
const client = WechatClient.connect(appId, appSecret);
234+
const client = new WechatClient({
235+
appId: 'APP_ID',
236+
appSecret: 'APP_SECRET',
237+
});
223238

224239
client.sendText(userId, 'Hello World').then(() => {
225240
console.log('sent');

packages/messaging-api-slack/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ const { SlackOAuthClient } = require('messaging-api-slack');
4141

4242
// get access token by setup OAuth & Permissions function to your app.
4343
// https://api.slack.com/docs/oauth
44-
const client = new SlackOAuthClient(
45-
'xoxb-000000000000-xxxxxxxxxxxxxxxxxxxxxxxx'
46-
);
44+
const client = new SlackOAuthClient({
45+
accessToken: 'xoxb-000000000000-xxxxxxxxxxxxxxxxxxxxxxxx',
46+
});
4747
```
4848

4949
#### Error Handling
@@ -129,9 +129,9 @@ const { SlackWebhookClient } = require('messaging-api-slack');
129129

130130
// get webhook URL by adding a Incoming Webhook integration to your team.
131131
// https://my.slack.com/services/new/incoming-webhook/
132-
const client = new SlackWebhookClient(
133-
'https://hooks.slack.com/services/XXXXXXXX/YYYYYYYY/zzzzzZZZZZ'
134-
);
132+
const client = new SlackWebhookClient({
133+
url: 'https://hooks.slack.com/services/XXXXXXXX/YYYYYYYY/zzzzzZZZZZ',
134+
});
135135
```
136136

137137
<br />

packages/messaging-api-telegram/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ yarn add messaging-api-telegram
4343
const { TelegramClient } = require('messaging-api-telegram');
4444

4545
// get accessToken from telegram [@BotFather](https://telegram.me/BotFather)
46-
const client = new TelegramClient('12345678:AaBbCcDdwhatever');
46+
const client = new TelegramClient({
47+
accessToken: '12345678:AaBbCcDdwhatever',
48+
});
4749
```
4850

4951
### Error Handling

0 commit comments

Comments
 (0)