@@ -47,7 +47,9 @@ Then, create a `MessengerClient` to call Messenger APIs:
47
47
const { MessengerClient } = require (' messaging-api-messenger' );
48
48
49
49
// get accessToken from facebook developers website
50
- const client = MessengerClient .connect (accessToken);
50
+ const client = new MessengerClient ({
51
+ accessToken: ' ACCESS_TOKEN' ,
52
+ });
51
53
52
54
client .sendText (userId, ' Hello World' ).then (() => {
53
55
console .log (' sent' );
@@ -78,7 +80,10 @@ Then, create a `LineClient` to call LINE APIs:
78
80
const { LineClient } = require (' messaging-api-line' );
79
81
80
82
// 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
+ });
82
87
83
88
client .pushText (userId, ' Hello World' ).then (() => {
84
89
console .log (' pushed' );
@@ -110,9 +115,9 @@ const { SlackOAuthClient } = require('messaging-api-slack');
110
115
111
116
// get access token by setup OAuth & Permissions function to your app.
112
117
// 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
+ } );
116
121
117
122
client .postMessage (' #random' , ' Hello World' ).then (() => {
118
123
console .log (' sent' );
@@ -124,9 +129,9 @@ const { SlackWebhookClient } = require('messaging-api-slack');
124
129
125
130
// get webhook URL by adding a Incoming Webhook integration to your team.
126
131
// 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
+ } );
130
135
131
136
client .sendText (' Hello World' ).then (() => {
132
137
console .log (' sent' );
@@ -157,7 +162,9 @@ Then, create a `TelegramClient` to call Telegram APIs:
157
162
const { TelegramClient } = require (' messaging-api-telegram' );
158
163
159
164
// 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
+ });
161
168
162
169
client .sendMessage (chatId, ' Hello World' ).then (() => {
163
170
console .log (' sent' );
@@ -188,7 +195,12 @@ Then, create a `ViberClient` to call Viber APIs:
188
195
const { ViberClient } = require (' messaging-api-viber' );
189
196
190
197
// 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
+ });
192
204
193
205
client .sendText (userId, ' Hello World' ).then (() => {
194
206
console .log (' sent' );
@@ -219,7 +231,10 @@ Then, create a `WechatClient` to call Wechat APIs:
219
231
const { WechatClient } = require (' messaging-api-wechat' );
220
232
221
233
// 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
+ });
223
238
224
239
client .sendText (userId, ' Hello World' ).then (() => {
225
240
console .log (' sent' );
0 commit comments