forked from AvengersWeChat/PadChat-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.md
2469 lines (2148 loc) · 90.2 KB
/
index.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Padchat Sdk v0.6.1 Documentation
<a name="Padchat"></a>
## Padchat ⇐ <code>EventEmitter</code>
**Kind**: global class
**Extends**: <code>EventEmitter</code>
* [Padchat](#Padchat) ⇐ <code>EventEmitter</code>
* [new Padchat()](#new_Padchat_new)
* _instance_
* [.start()](#Padchat+start)
* [.init()](#Padchat+init) ⇒ <code>Promise.<object></code>
* [.close()](#Padchat+close) ⇒ <code>Promise.<object></code>
* [.login(type, data)](#Padchat+login) ⇒ <code>Promise.<object></code>
* [.getWxData()](#Padchat+getWxData) ⇒ <code>Promise.<object></code>
* [.getLoginToken()](#Padchat+getLoginToken) ⇒ <code>Promise.<object></code>
* [.getMyInfo()](#Padchat+getMyInfo) ⇒ <code>Promise.<object></code>
* [.setSyncContact()](#Padchat+setSyncContact)
* [.setSyncMsg()](#Padchat+setSyncMsg)
* [.syncMsg()](#Padchat+syncMsg) ⇒ <code>Promise.<object></code>
* [.syncContact([reset])](#Padchat+syncContact) ⇒ <code>Promise.<object></code>
* [.logout()](#Padchat+logout) ⇒ <code>Promise.<object></code>
* [.sendMsg(toUserName, content, [atList])](#Padchat+sendMsg) ⇒ <code>Promise.<object></code>
* ~~[.massMsg([userList], content)](#Padchat+massMsg) ⇒ <code>Promise.<object></code>~~
* [.sendAppMsg(toUserName, content, object)](#Padchat+sendAppMsg) ⇒ <code>Promise.<object></code>
* [.shareCard(toUserName, content, userId)](#Padchat+shareCard) ⇒ <code>Promise.<object></code>
* [.sendImage(toUserName, file)](#Padchat+sendImage) ⇒ <code>Promise.<object></code>
* [.sendVoice(toUserName, file, time)](#Padchat+sendVoice) ⇒ <code>Promise.<object></code>
* [.getMsgImage(rawMsgData)](#Padchat+getMsgImage) ⇒ <code>Promise.<object></code>
* [.getMsgVideo(rawMsgData)](#Padchat+getMsgVideo) ⇒ <code>Promise.<object></code>
* [.getMsgVoice(rawMsgData)](#Padchat+getMsgVoice) ⇒ <code>Promise.<object></code>
* [.createRoom(userList)](#Padchat+createRoom) ⇒ <code>Promise.<object></code>
* [.getRoomMembers(groupId)](#Padchat+getRoomMembers) ⇒ <code>Promise.<object></code>
* [.addRoomMember(groupId, userId)](#Padchat+addRoomMember) ⇒ <code>Promise.<object></code>
* [.inviteRoomMember(groupId, userId)](#Padchat+inviteRoomMember) ⇒ <code>Promise.<object></code>
* [.deleteRoomMember(groupId, userId)](#Padchat+deleteRoomMember) ⇒ <code>Promise.<object></code>
* [.quitRoom(groupId)](#Padchat+quitRoom) ⇒ <code>Promise.<object></code>
* [.setRoomAnnouncement(groupId, content)](#Padchat+setRoomAnnouncement) ⇒ <code>Promise.<object></code>
* [.setRoomName(groupId, content)](#Padchat+setRoomName) ⇒ <code>Promise.<object></code>
* [.getRoomQrcode(groupId)](#Padchat+getRoomQrcode) ⇒ <code>Promise.<object></code>
* [.getContact(userId)](#Padchat+getContact) ⇒ <code>Promise.<object></code>
* [.searchContact(userId)](#Padchat+searchContact) ⇒ <code>Promise.<object></code>
* [.deleteContact(userId)](#Padchat+deleteContact) ⇒ <code>Promise.<object></code>
* [.getContactQrcode(userId, style)](#Padchat+getContactQrcode) ⇒ <code>Promise.<object></code>
* [.acceptUser(stranger, ticket)](#Padchat+acceptUser) ⇒ <code>Promise.<object></code>
* [.addContact(stranger, ticket, type, [content])](#Padchat+addContact) ⇒ <code>Promise.<object></code>
* [.sayHello(stranger, ticket, content)](#Padchat+sayHello) ⇒ <code>Promise.<object></code>
* [.setRemark(userId, remark)](#Padchat+setRemark) ⇒ <code>Promise.<object></code>
* [.setHeadImg(file)](#Padchat+setHeadImg) ⇒ <code>Promise.<object></code>
* [.snsUpload(file)](#Padchat+snsUpload) ⇒ <code>Promise.<object></code>
* [.snsobjectOp(momentId, type, commentId, commentType)](#Padchat+snsobjectOp) ⇒ <code>Promise.<object></code>
* [.snsSendMoment(content)](#Padchat+snsSendMoment) ⇒ <code>Promise.<object></code>
* [.snsUserPage(userId, [momentId])](#Padchat+snsUserPage) ⇒ <code>Promise.<object></code>
* [.snsTimeline([momentId])](#Padchat+snsTimeline) ⇒ <code>Promise.<object></code>
* [.snsGetObject(momentId)](#Padchat+snsGetObject) ⇒ <code>Promise.<object></code>
* [.snsComment(userId, momentId, content)](#Padchat+snsComment) ⇒ <code>Promise.<object></code>
* [.snsLike(userId, momentId)](#Padchat+snsLike) ⇒ <code>Promise.<object></code>
* [.syncFav([favKey])](#Padchat+syncFav) ⇒ <code>Promise.<object></code>
* [.addFav(content)](#Padchat+addFav) ⇒ <code>Promise.<object></code>
* [.getFav(favId)](#Padchat+getFav) ⇒ <code>Promise.<object></code>
* [.deleteFav(favId)](#Padchat+deleteFav) ⇒ <code>Promise.<object></code>
* [.getLabelList()](#Padchat+getLabelList) ⇒ <code>Promise.<object></code>
* [.addLabel(label)](#Padchat+addLabel) ⇒ <code>Promise.<object></code>
* [.deleteLabel(labelId)](#Padchat+deleteLabel) ⇒ <code>Promise.<object></code>
* [.setLabel(userId, labelId)](#Padchat+setLabel) ⇒ <code>Promise.<object></code>
* [.queryTransfer(rawMsgData)](#Padchat+queryTransfer) ⇒ <code>Promise.<object></code>
* [.acceptTransfer(rawMsgData)](#Padchat+acceptTransfer) ⇒ <code>Promise.<object></code>
* [.receiveRedPacket(rawMsgData)](#Padchat+receiveRedPacket) ⇒ <code>Promise.<object></code>
* [.queryRedPacket(rawMsgData, [index])](#Padchat+queryRedPacket) ⇒ <code>Promise.<object></code>
* [.openRedPacket(rawMsgData, key)](#Padchat+openRedPacket) ⇒ <code>Promise.<object></code>
* [.searchMp(content)](#Padchat+searchMp) ⇒ <code>Promise.<object></code>
* [.getSubscriptionInfo(ghName)](#Padchat+getSubscriptionInfo) ⇒ <code>Promise.<object></code>
* [.operateSubscription(ghName, menuId, menuKey)](#Padchat+operateSubscription) ⇒ <code>Promise.<object></code>
* [.getRequestToken(ghName, url)](#Padchat+getRequestToken) ⇒ <code>Promise.<object></code>
* [.requestUrl(url, xKey, xUin)](#Padchat+requestUrl) ⇒ <code>Promise.<object></code>
* ["open"](#Padchat+event_open)
* ["close"](#Padchat+event_close)
* ["error"](#Padchat+event_error)
* ["warn"](#Padchat+event_warn)
* ["qrcode"](#Padchat+event_qrcode)
* ["scan"](#Padchat+event_scan)
* ["login"](#Padchat+event_login)
* ["autoLogin"](#Padchat+event_autoLogin)
* ["loaded"](#Padchat+event_loaded)
* ["logout"](#Padchat+event_logout)
* ["over"](#Padchat+event_over)
* ["sns"](#Padchat+event_sns)
* ["push"](#Padchat+event_push)
* ["contact"](#Padchat+event_contact)
* _static_
* [.Padchat](#Padchat.Padchat)
* [new Padchat([url])](#new_Padchat.Padchat_new)
<a name="new_Padchat_new"></a>
### new Padchat()
Padchat模块
使用websocket与服务器进行通讯,拥有以下事件
Event | 说明
---- | ----
qrcode | 推送的二维码
scan | 扫码状态
push | 新信息事件
login | 登录
loaded | 通讯录载入完毕
logout | 注销登录
over | 实例注销(账号不退出)(要再登录需要重新调用init)
warn | 错误信息
sns | 朋友圈更新事件
**接口返回数据结构:** 所有接口均返回以下结构数据:
```
{
success: true, // 执行是否成功
err : '', // 错误提示
msg : '', // 附加信息
data : {} // 返回结果
}
```
TODO: 补充各监听事件返回的数据定义
<a name="Padchat+start"></a>
### padchat.start()
启动websocket连接
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
<a name="Padchat+init"></a>
### padchat.init() ⇒ <code>Promise.<object></code>
初始化
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
error : '',
success: true
}
```
<a name="Padchat+close"></a>
### padchat.close() ⇒ <code>Promise.<object></code>
关闭微信实例(不退出登陆)
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
<a name="Padchat+login"></a>
### padchat.login(type, data) ⇒ <code>Promise.<object></code>
登录账号
首次登录不需要传入`wxData`,登陆成功后本地保存`wxData`和`token`,以后使用断线重连或二次登陆,可降低封号概率。
任何登陆方式,使用成功登陆过的`wxData`都可降低封号概率。
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
error : '',
msg : '请使用手机微信扫码登陆!',
success: true
}
```
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| type | <code>string</code> | <code>"qrcode"</code> | 登录类型,默认为扫码登录 <br> `auto` **断线重连**,用于短时间使用`wxData`和`token`再次登录。`token`有效期很短,如果登陆失败,建议使用二次登陆方式 <br> `request` **二次登陆**。需要提供`wxData`和`token`数据,手机端会弹出确认框,点击后登陆。不容易封号 <br> `qrcode` **扫码登录**(现在此模式已经可以返回二维码内容的url了) <br> `phone` **手机验证码登录**,建议配合`wxData`使用 <br> `user` **账号密码登录**,建议配合`wxData`使用 |
| data | <code>object</code> | | 附加数据 |
| [data.wxData] | <code>string</code> | | 设备信息数据,登录后使用 `getDeviceInfo` 接口获得。<br>使用此数据可免设备安全验证,不容易封号 |
| [data.token] | <code>string</code> | | 使用用任意方式登录成功后,使用 `getAutoLoginData` 接口获得。 <br>此token有过期时间,断开登录状态一段时间后会过期。 |
| [data.phone] | <code>string</code> | | 手机号 |
| [data.code] | <code>string</code> | | 手机验证码 |
| [data.username] | <code>string</code> | | 用户名/qq号/手机号 |
| [data.password] | <code>string</code> | | 密码 |
**Example** *(扫码登陆)*
```js
const wx = new Padchat()
wx.on('open',()=>{
await wx.init()
await wx.login('qrcode',{wxData:'xxx'})
})
```
**Example** *(账号密码登陆)*
```js
const wx = new Padchat()
wx.on('open',()=>{
await wx.init()
await wx.login('user',{wxData:'xxx',username:'name',password:'123456'})
})
```
**Example** *(手机验证码)*
```js
const wx = new Padchat()
wx.on('open',()=>{
await wx.init()
await wx.login('phone',{wxData:'xxx',phone:'13512345678',code:'123456'})
})
```
**Example** *(断线重连)*
```js
const wx = new Padchat()
wx.on('open',()=>{
await wx.init()
await wx.login('auto',{wxData:'xxx',token:'xxxxx'})
})
```
**Example** *(二次登陆)*
```js
const wx = new Padchat()
wx.on('open',()=>{
await wx.init()
await wx.login('request',{wxData:'xxx',token:'xxxxx'})
})
```
<a name="Padchat+getWxData"></a>
### padchat.getWxData() ⇒ <code>Promise.<object></code>
获取设备62数据
事实上,只要你有一次登陆成功,以后一直用这个62数据,不需要更换。
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
error: '', success: true,
data :
{
wxData: 'xxxxx' //设备62数据
}
}
```
<a name="Padchat+getLoginToken"></a>
### padchat.getLoginToken() ⇒ <code>Promise.<object></code>
获取二次登陆数据
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
error : '',
success: true,
data :
{
message: '',
status : 0,
token : 'xxxx', //二次登陆token
uin : 14900000 //微信号uin,唯一值
}
}
```
<a name="Padchat+getMyInfo"></a>
### padchat.getMyInfo() ⇒ <code>Promise.<object></code>
获取微信号信息
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
error : '',
success: true,
data:
{
userName: 'wxid_xxxx', //微信号id,注意不一定是微信号,全局唯一
uin : 101234567 //微信号uin,全局唯一
}
}
```
<a name="Padchat+setSyncContact"></a>
### padchat.setSyncContact()
设置是否同步联系人
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
<a name="Padchat+setSyncMsg"></a>
### padchat.setSyncMsg()
设置是否同步消息
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
<a name="Padchat+syncMsg"></a>
### padchat.syncMsg() ⇒ <code>Promise.<object></code>
同步消息
使用此接口手动触发同步消息,一般用于刚登陆后调用,可立即开始同步消息。
否则会在有新消息时才开始同步消息。
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
<a name="Padchat+syncContact"></a>
### padchat.syncContact([reset]) ⇒ <code>Promise.<object></code>
同步通讯录
使用此接口可以触发同步通讯录,如果设置`reset`为`true`,则在通讯录同步完毕后触发`loaded`事件
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| [reset] | <code>boolean</code> | <code>false</code> | 是否重置通讯录加载完毕状态 |
<a name="Padchat+logout"></a>
### padchat.logout() ⇒ <code>Promise.<object></code>
退出登录
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
<a name="Padchat+sendMsg"></a>
### padchat.sendMsg(toUserName, content, [atList]) ⇒ <code>Promise.<object></code>
发送文字信息
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
error: '', success: true,
data : {
message: '',
msgId : '5172746684759824075',
status : 0
}
}
```
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| toUserName | <code>string</code> | | 接收者的wxid |
| content | <code>string</code> | | 内容文本 |
| [atList] | <code>Array.<string></code> | <code>[]</code> | 向群内发信息时,要@的用户wxid数组。 内容文本中要有@同样数量的用户昵称,不足时,将自动前缀空白的@符号及换行符 |
**Example** *(at群成员示例 - content内@了群成员昵称)*
```js
wx.sendMsg('123456@chatroom','@nickname1 @nickname2 message body',['wxid1','wxid2'])
// 显示内容:
// `@nickname1 @nickname2 message body`
```
**Example** *(at群成员示例 - content内遗漏@群成员: )*
```js
wx.sendMsg('123456@chatroom','@nickname1 message body',['wxid1','wxid2','wxid3'])
// 显示内容:
// `@@
// @nickname1 message body`
```
<a name="Padchat+massMsg"></a>
### ~~padchat.massMsg([userList], content) ⇒ <code>Promise.<object></code>~~
***Deprecated***
群发文字信息
FIXME: 此接口有问题,暂停使用
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| [userList] | <code>Array.<string></code> | <code>[]</code> | 接收者wxid数组 |
| content | <code>string</code> | | 内容文本 |
<a name="Padchat+sendAppMsg"></a>
### padchat.sendAppMsg(toUserName, content, object) ⇒ <code>Promise.<object></code>
发送App消息(含小程序)
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
error: '', success: true,
data : {
message: '',
msgId : '2195811529497100215',
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| toUserName | <code>string</code> | 接收者的wxid |
| content | <code>object</code> \| <code>string</code> | app消息体文本(appmsg xml结构) |
| object | <code>object</code> | app消息体对象(消息体文本和对象二选一) |
| [object.appid] | <code>string</code> | appid,忽略即可 |
| [object.sdkver] | <code>string</code> | sdk版本,忽略即可 |
| [object.title] | <code>string</code> | 标题 |
| [object.des] | <code>string</code> | 描述 |
| [object.url] | <code>string</code> | 链接url |
| [object.thumburl] | <code>string</code> | 缩略图url |
**Example** *(发送app消息对象)*
```js
// 直接在第二个参数中传入消息体对象
await wx.sendAppMsg('filehelper',{
appid = '', //appid,忽略即可
sdkver = '', //sdk版本,忽略即可
title = '', //标题
des = '', //描述
url = '', //链接url
thumburl = '', //缩略图url
})
```
**Example** *(发送app消息体文本)*
```js
// 如第二个参数传入非空文本,则忽略第三个参数
await wx.sendAppMsg('filehelper','<appmsg><title>标题</title><des>描述</des><action>view</action><type>5</type><showtype>0</showtype><content></content><url>http://wx.qq.com</url><thumburl>http://wx.qq.com/logo.png</thumburl></appmsg>')
```
<a name="Padchat+shareCard"></a>
### padchat.shareCard(toUserName, content, userId) ⇒ <code>Promise.<object></code>
分享名片
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
error: '', success: true,
data : {
message: '',
msgId : '1797099903789182796',
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| toUserName | <code>string</code> | 接收者的wxid |
| content | <code>string</code> | 内容文本 |
| userId | <code>string</code> | 被分享人wxid |
<a name="Padchat+sendImage"></a>
### padchat.sendImage(toUserName, file) ⇒ <code>Promise.<object></code>
发送图片消息
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
error: '', success: true,
data : {
message: '',
msgId : '1797099903789182796',
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| toUserName | <code>string</code> | 接收者的wxid |
| file | <code>Buffer</code> \| <code>string</code> | 图片Buffer数据或base64 |
<a name="Padchat+sendVoice"></a>
### padchat.sendVoice(toUserName, file, time) ⇒ <code>Promise.<object></code>
发送语音消息
注意:只能发送silk格式的语音文件
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
error: '', success: true,
data : {
data : 2490, //语音文件尺寸
message: '',
msgId : '136722815749654341',
size : 0,
status : 0
}
}
```
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| toUserName | <code>string</code> | | 接收者的wxid |
| file | <code>Buffer</code> \| <code>string</code> | | 语音Buffer数据或base64 |
| time | <code>number</code> | <code>0</code> | 语音时间,单位为毫秒 |
<a name="Padchat+getMsgImage"></a>
### padchat.getMsgImage(rawMsgData) ⇒ <code>Promise.<object></code>
获取消息原始图片
在push事件中收到的data数据是缩略图图片数据,使用本接口获取原图数据
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data :
{
image : 'base64_xxxx', //base64编码的原图数据
message: '',
size : 8139, //图片数据尺寸
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| rawMsgData | <code>object</code> | 推送的消息结构体,即`push`事件中收到的Object |
<a name="Padchat+getMsgVideo"></a>
### padchat.getMsgVideo(rawMsgData) ⇒ <code>Promise.<object></code>
获取消息原始视频
在push事件中只获得推送通知,不包含视频数据,需要使用本接口获取视频文件数据
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data :
{
message: '',
size : 160036, //视频数据尺寸
status : 0,
video : 'base64_xxxx' //base64编码的视频数据
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| rawMsgData | <code>object</code> | 推送的消息结构体,即`push`事件中收到的Object |
<a name="Padchat+getMsgVoice"></a>
### padchat.getMsgVoice(rawMsgData) ⇒ <code>Promise.<object></code>
获取消息语音数据
这个接口获取到的与push事件中接收到的数据一致,是base64编码的silk格式语音数据
BUG: 超过60Kb的语音数据,只能拉取到60Kb,也就是说大约36~40秒以上的语音会丢失后边部分语音内容
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data :
{
message: '',
size : 2490, //语音数据尺寸
status : 0,
voice : 'base64_xxxx' //base64编码的语音数据
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| rawMsgData | <code>object</code> | 推送的消息结构体,即`push`事件中收到的Object |
<a name="Padchat+createRoom"></a>
### padchat.createRoom(userList) ⇒ <code>Promise.<object></code>
创建群
注意:如果有用户存在问题不能进群,则会建群失败。
但判断是否成功应以`userName`字段
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data :
{
message : 'Everything is OK', //操作结果提示,失败为`MemberList are wrong`
status : 0,
userName: '5658541000@chatroom' //如果建群成功,则返回群id
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| userList | <code>Array.<string></code> | 用户wxid数组 |
<a name="Padchat+getRoomMembers"></a>
### padchat.getRoomMembers(groupId) ⇒ <code>Promise.<object></code>
获取群成员信息
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data :
{
chatroomId: 700000001,
count : 3, //群成员数量
member : //群成员列表
[{
bigHead : 'http://wx.qlogo.cn/xxx/0', //大头像url
chatroomNickName: '', //群内昵称
invitedBy : 'binsee', //进群邀请人
nickName : '复仇者联盟', //昵称
smallHead : 'http://wx.qlogo.cn/xxx/132', //小头像url
userName : 'wxid_xxxx' //wxid
}],
message : '',
status : 0,
userName: '5658541000@chatroom' //群id
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| groupId | <code>string</code> | 群id |
<a name="Padchat+addRoomMember"></a>
### padchat.addRoomMember(groupId, userId) ⇒ <code>Promise.<object></code>
添加群成员
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data : {
message: 'Everything is OK', //失败为`MemberList are wrong`
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| groupId | <code>string</code> | 群id |
| userId | <code>string</code> | 用户wxid |
<a name="Padchat+inviteRoomMember"></a>
### padchat.inviteRoomMember(groupId, userId) ⇒ <code>Promise.<object></code>
邀请群成员
会给对方发送一条邀请消息,无法判断对方是否真的接收到
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data : {
message: '',
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| groupId | <code>string</code> | 群id |
| userId | <code>string</code> | 用户wxid |
<a name="Padchat+deleteRoomMember"></a>
### padchat.deleteRoomMember(groupId, userId) ⇒ <code>Promise.<object></code>
删除群成员
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data : {
message: '',
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| groupId | <code>string</code> | 群id |
| userId | <code>string</code> | 用户wxid |
<a name="Padchat+quitRoom"></a>
### padchat.quitRoom(groupId) ⇒ <code>Promise.<object></code>
退出群
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data : {
message: '',
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| groupId | <code>string</code> | 群id |
<a name="Padchat+setRoomAnnouncement"></a>
### padchat.setRoomAnnouncement(groupId, content) ⇒ <code>Promise.<object></code>
设置群公告
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data : {
message: '',
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| groupId | <code>string</code> | 群id |
| content | <code>string</code> | 群公告内容 |
<a name="Padchat+setRoomName"></a>
### padchat.setRoomName(groupId, content) ⇒ <code>Promise.<object></code>
设置群名称
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data : {
message: '',
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| groupId | <code>string</code> | 群id |
| content | <code>string</code> | 群名称 |
<a name="Padchat+getRoomQrcode"></a>
### padchat.getRoomQrcode(groupId) ⇒ <code>Promise.<object></code>
获取微信群二维码
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data :
{
footer : '该二维码7天内(4月13日前)有效,重新进入将更新',
message: '',
qrCode : '', //进群二维码图片base64
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| groupId | <code>string</code> | 群id |
<a name="Padchat+getContact"></a>
### padchat.getContact(userId) ⇒ <code>Promise.<object></code>
获取用户/群信息
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
微信用户/公众号返回:
```
{
success: true,
data :
{
bigHead : 'http://wx.qlogo.cn/xxx/0', //大头像url
city : 'mesa', //城市
country : 'CN', //国家
intro : '', //简介(公众号主体)
label : '', //(标签)
message : '',
nickName : '复仇者联盟', //昵称
provincia : 'Henan', //省份
pyInitial : 'SM', //昵称拼音简写
quanPin : 'shamu', //昵称拼音
remark : '', //备注
remarkPyInitial: '', //备注拼音简写
remarkQuanPin : '', //备注拼音
sex : 1, //性别:1男2女
signature : '签名', //个性签名
smallHead : 'http://wx.qlogo.cn/xxx/132', //小头像url
status : 0,
stranger : 'v1_xxx@stranger', //用户v1码,从未加过好友则为空
ticket : 'v2_xxx@stranger', //用户v2码,如果非空则为单向好友(非对方好友)
userName : 'binxxx' //用户wxid
}
}
```
微信群返回:
```
{
success: true,
data : {
city : '',
country : '',
intro : '',
label : '',
member : [], //群成员wxid数组
message : '',
provincia : '',
remark : '',
sex : 0,
signature : '',
status : 0,
stranger : 'v1_xxx@stranger',
ticket : '',
bigHead : '',
chatroomId : 700001234,
chatroomOwner : 'wxid_xxx',
maxMemberCount : 500, //群最大人数
memberCount : 377, //群当前人数
nickName : 'Wechaty Developers\' Home', //群名称
pyInitial : 'WECHATYDEVELOPERSHOME',
quanPin : 'WechatyDevelopersHome',
remarkPyInitial: '',
remarkQuanPin : '',
smallHead : 'http://wx.qlogo.cn/xxx/0', //群头像url
userName : '1234567890@chatroom'
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| userId | <code>string</code> | 用户wxid/群id |
<a name="Padchat+searchContact"></a>
### padchat.searchContact(userId) ⇒ <code>Promise.<object></code>
搜索用户
可用此接口来判断是否已经加对方为好友
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data :
{
bigHead : 'http://wx.qlogo.cn/xxx/0', //大头像url
city : 'mesa', //城市
country : 'CN', //国家
message : '',
nickName : '复仇者联盟', //昵称
provincia: 'Henan', //省份
pyInitial: 'SM', //昵称拼音简写
quanPin : 'shamu', //昵称拼音
sex : 1, //性别:1男2女
signature: '签名', //个性签名
smallHead: 'http://wx.qlogo.cn/xxx/132', //小头像url
status : 0,
stranger : 'v1_xxx@stranger', //好友为空,非好友显示v2码
userName : 'binxxx' //是自己好友显示wxid,非好友为v1码
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| userId | <code>string</code> | 用户wxid |
<a name="Padchat+deleteContact"></a>
### padchat.deleteContact(userId) ⇒ <code>Promise.<object></code>
删除好友
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data : {
message: '',
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| userId | <code>string</code> | 用户wxid |
<a name="Padchat+getContactQrcode"></a>
### padchat.getContactQrcode(userId, style) ⇒ <code>Promise.<object></code>
获取用户二维码
仅限获取自己的二维码,无法获取其他人的二维码
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data :
{
footer : '',
message: '',
qrCode : '', //二维码图片base64
status : 0
}
}
```
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| userId | <code>string</code> | | 用户wxid |
| style | <code>Number</code> | <code>0</code> | 二维码风格。可用范围0-3 |
<a name="Padchat+acceptUser"></a>
### padchat.acceptUser(stranger, ticket) ⇒ <code>Promise.<object></code>
通过好友验证
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data : {
message: '',
status : 0
}
}
```
| Param | Type | Description |
| --- | --- | --- |
| stranger | <code>string</code> | 用户stranger数据 |
| ticket | <code>string</code> | 用户ticket数据 |
<a name="Padchat+addContact"></a>
### padchat.addContact(stranger, ticket, type, [content]) ⇒ <code>Promise.<object></code>
添加好友
**Kind**: instance method of [<code>Padchat</code>](#Padchat)
**Returns**: <code>Promise.<object></code> - 返回Promise<object>,注意捕捉catch
```
{
success: true,
data : {
message: '',
status : 0 //如果对方设置了验证,会返回-44
}
}
```
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| stranger | <code>string</code> | | 用户stranger数据 |
| ticket | <code>string</code> | | 用户ticket数据 |
| type | <code>Number</code> | <code>3</code> | 添加好友途径 <br> `0` : 通过微信号搜索 <br> `1` : 搜索QQ号 <br> `3` : 通过微信号搜索 <br> `4` : 通过QQ好友添加 <br> `8` : 通过群聊 <br> `12`: 来自QQ好友 <br> `14`: 通过群聊 <br> `15`: 通过搜索手机号 <br> `17`: 通过名片分享 //未验证 <br> `22`: 通过摇一摇打招呼方式 //未验证 <br> `25`: 通过漂流瓶 //未验证 <br> `30`: 通过二维码方式 //未验证 |
| [content] | <code>string</code> | <code>"''"</code> | 验证信息 |
<a name="Padchat+sayHello"></a>
### padchat.sayHello(stranger, ticket, content) ⇒ <code>Promise.<object></code>
打招呼
如果已经是好友,会收到由系统自动发送,来自对方的一条文本信息