This repository has been archived by the owner on Jun 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
official_account.go
1457 lines (1330 loc) · 54.3 KB
/
official_account.go
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
package wego
import (
"bytes"
"context"
"github.com/godcong/wego/util"
"golang.org/x/xerrors"
"net/url"
"strings"
"time"
)
// OfficialAccount ...
type OfficialAccount struct {
*OfficialAccountProperty
BodyType BodyType
oauth OAuthProperty
client *Client
jssdk *JSSDK
accessToken *AccessToken
remoteURL string
localHost string
}
// NewOfficialAccount ...
func NewOfficialAccount(config *OfficialAccountProperty, options ...OfficialAccountOption) *OfficialAccount {
officialAccount := &OfficialAccount{
OfficialAccountProperty: config,
BodyType: BodyTypeJSON,
}
officialAccount.parse(options...)
officialAccount.client = officialAccount.Client()
return officialAccount
}
func (obj *OfficialAccount) parse(options ...OfficialAccountOption) {
if options == nil {
return
}
for _, o := range options {
o(obj)
}
}
// Client ...
func (obj *OfficialAccount) Client() *Client {
if obj.client == nil {
obj.client = NewClient(ClientBodyType(obj.BodyType), ClientAccessToken(obj.accessToken))
}
return obj.client
}
// HandleAuthorizeNotify ...
func (obj *OfficialAccount) HandleAuthorizeNotify(hooks ...interface{}) ServeHTTPFunc {
return obj.HandleAuthorize(hooks...).ServeHTTP
}
// HandleAuthorize ...
func (obj *OfficialAccount) HandleAuthorize(hooks ...interface{}) Notifier {
notify := &authorizeNotify{
OfficialAccount: obj,
}
for _, hook := range hooks {
switch h := hook.(type) {
case TokenHook:
notify.TokenHook = h
case UserHook:
notify.UserHook = h
case StateHook:
notify.StateHook = h
}
}
return notify
}
// GetUserInfo ...
func (obj *OfficialAccount) GetUserInfo(token *Token) (user *WechatUser, e error) {
p := util.Map{
"access_token": token.AccessToken,
"openid": token.OpenID,
"lang": "zh_CN",
}
responder := Get(snsUserinfo, p)
e = responder.Error()
if e != nil {
return nil, e
}
log.Debug("WechatUser|responder", string(responder.Bytes()))
user = new(WechatUser)
e = responder.Unmarshal(user)
if e != nil {
return nil, e
}
return user, nil
}
// Oauth2AuthorizeToken ...
func (obj *OfficialAccount) Oauth2AuthorizeToken(code string) (token *Token, e error) {
log.Debug("Oauth2AuthorizeToken", code)
p := util.Map{
"appid": obj.AppID,
"secret": obj.AppSecret,
"code": code,
"grant_type": "authorization_code",
}
uri := obj.RedirectURI()
if uri != "" {
p.Set("redirect_uri", uri)
}
responder := PostJSON(oauth2AccessToken, p, nil)
e = responder.Error()
if e != nil {
return nil, e
}
log.Debug("GetAuthorizeToken|response", string(responder.Bytes()))
token = &Token{}
e = responder.Unmarshal(token)
if e != nil {
return nil, e
}
return token, nil
}
/*AuthCodeURL 生成授权地址URL*/
func (obj *OfficialAccount) AuthCodeURL(state string) string {
log.Debug("AuthCodeURL", state)
var buf bytes.Buffer
buf.WriteString(oauth2Authorize)
p := util.Map{
"response_type": "code",
"appid": obj.AppID,
}
uri := obj.RedirectURI()
if uri != "" {
p.Set("redirect_uri", uri)
}
if obj.oauth.Scopes != nil {
p.Set("scope", obj.oauth.Scopes)
}
if state != "" {
// TODO(light): Docs say never to omit state; don't allow empty.
p.Set("state", state)
}
buf.WriteByte('?')
buf.WriteString(p.URLEncode())
return buf.String()
}
// RedirectURI ...
func (obj *OfficialAccount) RedirectURI() string {
log.Debug("RedirectURI", obj.oauth.RedirectURI)
if obj.oauth.RedirectURI != "" {
if strings.Index(obj.oauth.RedirectURI, "http") == 0 {
return obj.oauth.RedirectURI
}
return util.URL(obj.localHost, obj.oauth.RedirectURI)
}
return ""
}
// RemoteURL ...
func (obj *OfficialAccount) RemoteURL() string {
return obj.remoteURL
}
/*ClearQuota 公众号的所有api调用(包括第三方帮其调用)次数进行清零
HTTP请求方式:POST
HTTP调用: https://api.weixin.qq.com/cgi-bin/clear_quota?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) ClearQuota() Responder {
log.Debug("OfficialAccount|ClearQuota")
u := util.URL(obj.RemoteURL(), clearQuota)
return obj.Client().Post(context.Background(), u, nil, util.Map{"appid": obj.AppID})
}
/*GetCallbackIP 请求微信的服务器IP列表
HTTP请求方式: GET
HTTP调用:https://api.weixin.qq.com/cgi-bin/getcallbackip?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) GetCallbackIP() Responder {
log.Debug("OfficialAccount|GetCallbackIP")
u := util.URL(obj.RemoteURL(), getCallbackIP)
return obj.Client().Get(context.Background(), u, nil)
}
//MessageSend 根据OpenID列表群发【订阅号不可用,服务号认证后可用】
//接口调用请求说明
//http请求方式: POST
//https://api.weixin.qq.com/cgi-bin/message/mass/send?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) MessageSend(msg util.Map) Responder {
log.Debug("OfficialAccount|MessageSend")
u := util.URL(obj.RemoteURL(), messageMassSend)
return obj.Client().Post(context.Background(), u, nil, msg)
}
//MessageSendAll 根据标签进行群发【订阅号与服务号认证后均可用】
//接口调用请求说明
//http请求方式: POST
//https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) MessageSendAll(msg util.Map) Responder {
log.Debug("OfficialAccount|MessageSendAll")
u := util.URL(obj.RemoteURL(), messageMassSendall)
return obj.Client().Post(context.Background(), u, nil, msg)
}
//MessagePreview 预览接口【订阅号与服务号认证后均可用】
//开发者可通过该接口发送消息给指定用户,在手机端查看消息的样式和排版。为了满足第三方平台开发者的需求,在保留对openID预览能力的同时,增加了对指定微信号发送预览的能力,但该能力每日调用次数有限制(100次),请勿滥用。
//接口调用请求说明
//http请求方式: POST
//https://api.weixin.qq.com/cgi-bin/message/mass/preview?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) MessagePreview(msg util.Map) Responder {
log.Debug("OfficialAccount|MessagePreview")
u := util.URL(obj.RemoteURL(), messageMassPreview)
return obj.Client().Post(context.Background(), u, nil, msg)
}
//MessageDelete 删除群发【订阅号与服务号认证后均可用】
//群发之后,随时可以通过该接口删除群发。
//接口调用请求说明
//http请求方式: POST
//https://api.weixin.qq.com/cgi-bin/message/mass/delete?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) MessageDelete(msgID string) Responder {
log.Debug("OfficialAccount|MessageDelete")
u := util.URL(obj.RemoteURL(), messageMassDelete)
return obj.Client().Post(context.Background(), u, nil, util.Map{"msg_id": msgID})
}
//MessageStatus 查询群发消息发送状态【订阅号与服务号认证后均可用】
//接口调用请求说明
//http请求方式: POST
//https://api.weixin.qq.com/cgi-bin/message/mass/get?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) MessageStatus(msgID string) Responder {
log.Debug("OfficialAccount|MessageStatus")
u := util.URL(obj.RemoteURL(), messageMassGet)
return obj.Client().Post(context.Background(), u, nil, util.Map{"msg_id": msgID})
}
// MessageSendText ...
func (obj *OfficialAccount) MessageSendText() {
log.Debug("OfficialAccount|MessageSendText")
//TODO:
}
//CardCreateLandingPage 创建货架接口
// HTTP请求方式: POST
// URL:https://api.weixin.qq.com/card/landingpage/create?access_token=$TOKEN
// func (c *OfficialAccount) CreateLandingPage(page *CardLandingPage) Responder {
func (obj *OfficialAccount) CardCreateLandingPage(p util.Map) Responder {
log.Debug("OfficialAccount|CardCreateLandingPage")
u := util.URL(obj.RemoteURL(), cardLandingPageCreate)
return obj.Client().Post(context.Background(), u, nil, p)
}
//CardDeposit 导入code接口
// HTTP请求方式: POST
// URL:http://api.weixin.qq.com/card/code/deposit?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) CardDeposit(cardID string, code []string) Responder {
log.Debug("OfficialAccount|CardDeposit")
u := util.URL(obj.RemoteURL(), cardCodeDeposit)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"card_id": cardID,
"code": code,
})
}
//CardGetDepositCount 查询导入code数目
//
// HTTP请求方式: POST
// URL:http://api.weixin.qq.com/card/code/getdepositcount?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) CardGetDepositCount(cardID string) Responder {
log.Debug("OfficialAccount|CardGetDepositCount")
u := util.URL(obj.RemoteURL(), cardCodeGetDepositCount)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"card_id": cardID,
})
}
//CardCheckCode 核查code接口
// HTTP请求方式: POST
// HTTP调用:http://api.weixin.qq.com/card/code/checkcode?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) CardCheckCode(cardID string, code []string) Responder {
log.Debug("OfficialAccount|CardCheckCode")
u := util.URL(obj.RemoteURL(), cardCodeCheckCode)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"card_id": cardID,
"code": code,
})
}
//CardGetCode 查询Code接口
// HTTP请求方式: POST
// HTTP调用:https://api.weixin.qq.com/card/code/get?access_token=TOKEN
// 参数说明:
// 参数名 必填 类型 示例值 描述
// code 是 string(20) 110201201245 单张卡券的唯一标准。
// card_id 否 string(32) pFS7Fjg8kV1I dDz01r4SQwMkuCKc 卡券ID代表一类卡券。自定义code卡券必填。
// check_consume 否 bool true 是否校验code核销状态,填入true和false时的code异常状态返回数据不同。
func (obj *OfficialAccount) CardGetCode(p util.Map) Responder {
log.Debug("OfficialAccount|CardGetCode")
u := util.URL(obj.RemoteURL(), cardCodeGet)
return obj.Client().Post(context.Background(), u, nil, p)
}
//CardGetHTML 图文消息群发卡券
// HTTP请求方式: POST
// URL:https://api.weixin.qq.com/card/mpnews/gethtml?access_token=TOKEN
func (obj *OfficialAccount) CardGetHTML(cardID string) Responder {
log.Debug("OfficialAccount|CardGetHTML")
u := util.URL(obj.RemoteURL(), cardMPNewsGetHTML)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"card_id": cardID,
})
}
//CardSetTestWhiteListByID 设置测试白名单(by openid)
func (obj *OfficialAccount) CardSetTestWhiteListByID(list ...string) Responder {
log.Debug("OfficialAccount|CardSetTestWhiteListByID")
return obj.CardSetTestWhiteList("openid", list)
}
//CardSetTestWhiteListByName 设置测试白名单(by username)
func (obj *OfficialAccount) CardSetTestWhiteListByName(list ...string) Responder {
log.Debug("OfficialAccount|CardSetTestWhiteListByName")
return obj.CardSetTestWhiteList("username", list)
}
//CardSetTestWhiteList 设置测试白名单
// HTTP请求方式: POST
// URL:https://api.weixin.qq.com/card/testwhitelist/set?access_token=TOKEN
func (obj *OfficialAccount) CardSetTestWhiteList(typ string, list []string) Responder {
log.Debug("OfficialAccount|CardSetTestWhiteList")
u := util.URL(obj.RemoteURL(), cardTestWhiteListSet)
return obj.Client().Post(context.Background(), u, nil, util.Map{typ: list})
}
//CardCreateQrCode 创建二维码
// HTTP请求方式: POST
// URL:https://api.weixin.qq.com/card/qrcode/create?access_token=TOKEN
func (obj *OfficialAccount) CardCreateQrCode(action *QrCodeAction) Responder {
log.Debug("OfficialAccount|CardCreateQrCode")
u := util.URL(obj.RemoteURL(), cardQrcodeCreate)
return obj.Client().Post(context.Background(), u, nil, action)
}
//CardCreate 创建卡券
// HTTP请求方式: POST
// URL: https://api.weixin.qq.com/card/create?access_token=ACCESS_TOKEN
// type *OneCard or Map
func (obj *OfficialAccount) CardCreate(maps util.MapAble) Responder {
log.Debug("OfficialAccount|CardCreate")
u := util.URL(obj.RemoteURL(), cardCreate)
return obj.Client().Post(context.Background(), u, nil, util.Map{"card": maps})
}
//CardGet 查看卡券详情
// 开发者可以调用该接口查询某个card_id的创建信息、审核状态以及库存数量。
// 接口调用请求说明
// HTTP请求方式: POSTURL:https://api.weixin.qq.com/card/get?access_token=TOKEN
func (obj *OfficialAccount) CardGet(cardID string) Responder {
log.Debug("OfficialAccount|CardGet")
u := util.URL(obj.RemoteURL(), cardGet)
return obj.Client().Post(context.Background(), u, nil, util.Map{"card_id": cardID})
}
//CardGetApplyProtocol 卡券开放类目查询接口
// HTTP请求方式: GET
// URL:https://api.weixin.qq.com/card/getapplyprotocol?access_token=TOKEN
func (obj *OfficialAccount) CardGetApplyProtocol() Responder {
log.Debug("OfficialAccount|CardGetApplyProtocol")
u := util.URL(obj.RemoteURL(), cardGetApplyProtocol)
return obj.Client().Get(context.Background(), u, nil)
}
//CardGetColors 卡券开放类目查询接口
// HTTP请求方式: GET
// URL:https://api.weixin.qq.com/card/getcolors?access_token=TOKEN
func (obj *OfficialAccount) CardGetColors() Responder {
log.Debug("OfficialAccount|CardGetColors")
u := util.URL(obj.RemoteURL(), cardGetColors)
return obj.Client().Get(context.Background(), u, nil)
}
//CardCheckin 更新飞机票信息接口
// 接口调用请求说明
// http请求方式: POST
// URL:https://api.weixin.qq.com/card/boardingpass/checkin?access_token=TOKEN
func (obj *OfficialAccount) CardCheckin(p util.Map) Responder {
log.Debug("OfficialAccount|CardCheckin")
u := util.URL(obj.RemoteURL(), cardBoardingpassCheckin)
return obj.Client().Post(context.Background(), u, nil, p)
}
//CardCategories 卡券开放类目查询接口
// 接口说明
// 通过调用该接口查询卡券开放的类目ID,类目会随业务发展变更,请每次用接口去查询获取实时卡券类目。
// 注意:
// 1.本接口查询的返回值还有卡券资质ID,此处的卡券资质为:已微信认证的公众号通过微信公众平台申请卡券功能时,所需的资质。
// 2.对于第三方强授权模式,子商户无论选择什么类目,均提交营业执照即可,所以不用考虑此处返回的资质字段,返回值仅参考类目ID即可。
// 接口详情
// 接口调用请求说明
// https请求方式: GET https://api.weixin.qq.com/card/getapplyprotocol?access_token=TOKEN
func (obj *OfficialAccount) CardCategories() Responder {
log.Debug("OfficialAccount|CardCategories")
u := util.URL(obj.RemoteURL(), cardGetapplyprotocol)
return obj.Client().Get(context.Background(), u, nil)
}
//CardBatchGet 批量查询卡券列表
// 接口调用请求说明
// HTTP请求方式: POST URL:https://api.weixin.qq.com/card/batchget?access_token=TOKEN
func (obj *OfficialAccount) CardBatchGet(offset, count int, statusList []CardStatus) Responder {
log.Debug("OfficialAccount|CardBatchGet")
p := util.Map{
"offset": offset,
"count": count,
"status_list": statusList,
}
u := util.URL(obj.RemoteURL(), cardBatchget)
return obj.Client().Post(context.Background(), u, nil, p)
}
//CardUpdate 更改卡券信息接口
// 接口说明
// 支持更新所有卡券类型的部分通用字段及特殊卡券(会员卡、飞机票、电影票、会议门票)中特定字段的信息。
// 接口调用请求说明
// HTTP请求方式: POST URL:https://api.weixin.qq.com/card/update?access_token=TOKEN
func (obj *OfficialAccount) CardUpdate(cardID string, p util.Map) Responder {
log.Debug("OfficialAccount|CardUpdate")
p = util.CombineMaps(util.Map{"card_id": cardID}, p)
u := util.URL(obj.RemoteURL(), cardUpdate)
return obj.Client().Post(context.Background(), u, nil, p)
}
//CardDelete 删除卡券接口
//删除卡券接口允许商户删除任意一类卡券。删除卡券后,该卡券对应已生成的领取用二维码、添加到卡包JS API均会失效。 注意:如用户在商家删除卡券前已领取一张或多张该卡券依旧有效。即删除卡券不能删除已被用户领取,保存在微信客户端中的卡券。
//接口调用请求说明
//HTTP请求方式: POST URL:https://api.weixin.qq.com/card/delete?access_token=TOKEN
func (obj *OfficialAccount) CardDelete(cardID string) Responder {
log.Debug("OfficialAccount|CardDelete")
u := util.URL(obj.RemoteURL(), cardDelete)
return obj.Client().Post(context.Background(), u, nil, util.Map{"card_id": cardID})
}
// CardGetUserCards ...
func (obj *OfficialAccount) CardGetUserCards(openID, cardID string) Responder {
log.Debug("OfficialAccount|CardGetUserCards")
u := util.URL(obj.RemoteURL(), cardUserGetcardlist)
return obj.Client().Post(context.Background(), u, nil, util.Map{"openid": openID, "card_id": cardID})
}
// CardSetPayCell ...
func (obj *OfficialAccount) CardSetPayCell(cardID string, isOpen bool) Responder {
log.Debug("OfficialAccount|CardSetPayCell")
u := util.URL(obj.RemoteURL(), cardPaycellSet)
return obj.Client().Post(context.Background(), u, nil, util.Map{"is_open": isOpen, "card_id": cardID})
}
// CardModifyStock ...
func (obj *OfficialAccount) CardModifyStock(cardID string, option util.Map) Responder {
log.Debug("OfficialAccount|CardModifyStock")
u := util.URL(obj.RemoteURL(), cardModifystock)
return obj.Client().Post(context.Background(), u, nil, util.Map{"card_id": cardID})
}
//GetCardAPITicket get ticket
func (obj *OfficialAccount) GetCardAPITicket(refresh bool) (string, error) {
jssdk, err := obj.JSSDK()
if err != nil {
return "", err
}
return jssdk.GetTicket("wx_card", refresh), nil
}
// JSSDK ...
func (obj *OfficialAccount) JSSDK() (*JSSDK, error) {
if obj.jssdk == nil {
return nil, xerrors.New("must add jssdk on new")
}
return obj.jssdk, nil
}
/*CommentOpen 打开文章评论
https 请求方式: POST
https://api.weixin.qq.com/cgi-bin/comment/open?access_token=ACCESS_TOKEN
失败:
{"errcode":88000,"errmsg":"without comment privilege"}
*/
func (obj *OfficialAccount) CommentOpen(id, index int) Responder {
u := util.URL(obj.RemoteURL(), commentOpen)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"msg_data_id": id,
"index": index,
})
}
/*CommentClose 关闭评论
https 请求方式: POST
https://api.weixin.qq.com/cgi-bin/comment/close?access_token=ACCESS_TOKEN
失败:
{"errcode":88000,"errmsg":"without comment privilege"}
*/
func (obj *OfficialAccount) CommentClose(id, index int) Responder {
u := util.URL(obj.RemoteURL(), commentClose)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"msg_data_id": id,
"index": index,
})
}
/*CommentList 获取文章评论
https 请求方式: POST
https://api.weixin.qq.com/cgi-bin/comment/list?access_token=ACCESS_TOKEN
失败:
{"errcode":88000,"errmsg":"without comment privilege"}
*/
func (obj *OfficialAccount) CommentList(id, index, begin, count, typ int) Responder {
u := util.URL(obj.RemoteURL(), commentList)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"msg_data_id": id,
"index": index,
"begin": begin,
"count": count,
"type": typ,
})
}
/*CommentMarkElect 将评论标记精选
https 请求方式: POST
https://api.weixin.qq.com/cgi-bin/comment/markelect?access_token=ACCESS_TOKEN
参数 是否必须 类型 说明
id 是 int 群发返回的msg_data_id
index 否 int 多图文时,用来指定第几篇图文,从0开始,不带默认操作该msg_data_id的第一篇图文
user_comment_id 是 int 用户评论id
*/
func (obj *OfficialAccount) CommentMarkElect(id, index, userCommentID int) Responder {
u := util.URL(obj.RemoteURL(), commentMarkelect)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"msg_data_id": id,
"index": index,
"user_comment_id": userCommentID,
})
}
/*CommentUnmarkElect 将评论取消精选
https 请求方式: POST
https://api.weixin.qq.com/cgi-bin/comment/unmarkelect?access_token=ACCESS_TOKEN
参数 是否必须 类型 说明
id 是 int 群发返回的msg_data_id
index 否 int 多图文时,用来指定第几篇图文,从0开始,不带默认操作该msg_data_id的第一篇图文
user_comment_id 是 int 用户评论id
*/
func (obj *OfficialAccount) CommentUnmarkElect(id, index, userCommentID int) Responder {
u := util.URL(obj.RemoteURL(), commentUnmarkelect)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"msg_data_id": id,
"index": index,
"user_comment_id": userCommentID,
})
}
/*CommentDelete 删除评论
https 请求方式: POST
https://api.weixin.qq.com/cgi-bin/comment/delete?access_token=ACCESS_TOKEN
参数 是否必须 类型 说明
id 是 int 群发返回的msg_data_id
index 否 int 多图文时,用来指定第几篇图文,从0开始,不带默认操作该msg_data_id的第一篇图文
user_comment_id 是 int 用户评论id
*/
func (obj *OfficialAccount) CommentDelete(id, index, userCommentID int) Responder {
u := util.URL(obj.RemoteURL(), commentDelete)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"msg_data_id": id,
"index": index,
"user_comment_id": userCommentID,
})
}
/*CommentReplyAdd 回复评论
https 请求方式: POST
https://api.weixin.qq.com/cgi-bin/comment/reply/add?access_token=ACCESS_TOKEN
参数 是否必须 类型 说明
id 是 int 群发返回的msg_data_id
index 否 int 多图文时,用来指定第几篇图文,从0开始,不带默认操作该msg_data_id的第一篇图文
user_comment_id 是 int 评论id
content 是 string 回复内容
*/
func (obj *OfficialAccount) CommentReplyAdd(id, index, userCommentID int, content string) Responder {
u := util.URL(obj.RemoteURL(), commentReplyAdd)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"msg_data_id": id,
"index": index,
"user_comment_id": userCommentID,
"content": content,
})
}
/*CommentReplyDelete 删除回复
https 请求方式: POST
https://api.weixin.qq.com/cgi-bin/comment/reply/delete?access_token=ACCESS_TOKEN
参数 是否必须 类型 说明
id 是 int 群发返回的msg_data_id
index 否 int 多图文时,用来指定第几篇图文,从0开始,不带默认操作该msg_data_id的第一篇图文
user_comment_id 是 int 评论id
*/
func (obj *OfficialAccount) CommentReplyDelete(id, index, userCommentID int) Responder {
u := util.URL(obj.RemoteURL(), commentReplyDelete)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"msg_data_id": id,
"index": index,
"user_comment_id": userCommentID,
})
}
/*CurrentAutoReplyInfo ...
http请求方式: GET(请使用https协议)
https://api.weixin.qq.com/cgi-bin/get_current_autoreply_info?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) CurrentAutoReplyInfo() Responder {
u := util.URL(obj.RemoteURL(), getCurrentAutoReplyInfo)
return obj.Client().Get(context.Background(), u, nil)
}
/*CurrentSelfMenuInfo ...
http请求方式: GET(请使用https协议)
https://api.weixin.qq.com/cgi-bin/get_current_selfmenu_info?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) CurrentSelfMenuInfo() Responder {
u := util.URL(obj.RemoteURL(), getCurrentSelfMenuInfo)
return obj.Client().Get(context.Background(), u, nil)
}
func (obj *OfficialAccount) dataCubeGet(uri, beginDate, endDate string) Responder {
u := util.URL(obj.RemoteURL(), uri)
return obj.Client().Post(context.Background(), u, nil, util.Map{"begin_date": beginDate, "end_date": endDate})
}
/*DataCubeGetUserSummary 获取用户增减数据(getusersummary) 7
https://api.weixin.qq.com/datacube/getusersummary?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) DataCubeGetUserSummary(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUserSummary", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUserSummary,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
/*DataCubeGetUserCumulate 获取累计用户数据(getusercumulate) 7
https://api.weixin.qq.com/datacube/getusercumulate?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) DataCubeGetUserCumulate(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUserCumulate", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUserCumulate,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
/*DataCubeGetArticleSummary 获取图文群发每日数据(getarticlesummary) 1
https://api.weixin.qq.com/datacube/getarticlesummary?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) DataCubeGetArticleSummary(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetArticleSummary", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetArticleSummary,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
/*DataCubeGetArticleTotal 获取图文群发总数据(getarticletotal) 1
https://api.weixin.qq.com/datacube/getarticletotal?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) DataCubeGetArticleTotal(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetArticleTotal", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetArticleTotal,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
/*DataCubeGetUserRead 获取图文统计数据(getuserread) 3
https://api.weixin.qq.com/datacube/getuserread?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) DataCubeGetUserRead(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUserRead", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUserRead,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
/*DataCubeGetUserReadHour 获取图文统计分时数据(getuserreadhour) 1
https://api.weixin.qq.com/datacube/getuserreadhour?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) DataCubeGetUserReadHour(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUserReadHour", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUserReadHour,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
/*DataCubeGetUserShare 获取图文分享转发数据(getusershare) 7
https://api.weixin.qq.com/datacube/getusershare?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) DataCubeGetUserShare(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUserReadHour", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUserShare,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
/*DataCubeGetUserShareHour 获取图文分享转发分时数据(getusersharehour) 1
https://api.weixin.qq.com/datacube/getusersharehour?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) DataCubeGetUserShareHour(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUserReadHour", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUserShareHour,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
/*DataCubeGetUpstreamMsg 获取消息发送概况数据(getupstreammsg) 7
https://api.weixin.qq.com/datacube/getupstreammsg?access_token=ACCESS_TOKEN
*/
func (obj *OfficialAccount) DataCubeGetUpstreamMsg(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUpstreamMsg", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUpstreamMsg,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
//DataCubeGetUpstreamMsgHour 获取消息分送分时数据(getupstreammsghour) 1
// https://api.weixin.qq.com/datacube/getupstreammsghour?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) DataCubeGetUpstreamMsgHour(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUpstreamMsgHour", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUpstreamMsgHour,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
//DataCubeGetUpstreamMsgWeek 获取消息发送周数据(getupstreammsgweek) 30
// https://api.weixin.qq.com/datacube/getupstreammsgweek?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) DataCubeGetUpstreamMsgWeek(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUpstreamMsgWeek", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUpstreamMsgWeek,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
//DataCubeGetUpstreamMsgDist 获取消息发送分布数据(getupstreammsgdist) 15
// https://api.weixin.qq.com/datacube/getupstreammsgdist?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) DataCubeGetUpstreamMsgDist(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUpstreamMsgDist", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUpstreamMsgDist,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
//DataCubeGetUpstreamMsgDistWeek 获取消息发送分布周数据(getupstreammsgdistweek) 30
// https://api.weixin.qq.com/datacube/getupstreammsgdistweek?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) DataCubeGetUpstreamMsgDistWeek(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUpstreamMsgDistWeek", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUpstreamMsgDistWeek,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
// DataCubeGetUpstreamMsgDistMonth 获取消息发送分布月数据(getupstreammsgdistmonth) 30
// https://api.weixin.qq.com/datacube/getupstreammsgdistmonth?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) DataCubeGetUpstreamMsgDistMonth(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetUpstreamMsgDistMonth", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetUpstreamMsgDistMonth,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
//DataCubeGetInterfaceSummary 获取接口分析数据(getinterfacesummary) 30
// https://api.weixin.qq.com/datacube/getinterfacesummary?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) DataCubeGetInterfaceSummary(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetInterfaceSummary", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetInterfaceSummary,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
//DataCubeGetInterfaceSummaryHour 获取接口分析分时数据(getinterfacesummaryhour) 1
// https://api.weixin.qq.com/datacube/getinterfacesummaryhour?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) DataCubeGetInterfaceSummaryHour(beginDate, endDate time.Time) Responder {
log.Debug("DataCube|GetInterfaceSummaryHour", beginDate, endDate)
return obj.dataCubeGet(
dataCubeGetInterfaceSummaryHour,
beginDate.Format(DatacubeTimeLayout),
endDate.Format(DatacubeTimeLayout),
)
}
/*MediaType MediaType */
type MediaType string
/*media types */
const (
MediaTypeImage MediaType = "image"
MediaTypeVoice MediaType = "voice"
MediaTypeVideo MediaType = "video"
MediaTypeThumb MediaType = "thumb"
)
/*String transfer MediaType to string */
func (m MediaType) String() string {
return string(m)
}
//MaterialAddNews 新增永久素材
// http请求方式: POST,https协议
// https://api.weixin.qq.com/cgi-bin/material/add_news?access_token=ACCESS_TOKEN
//func (m *Material) AddNews(articles []*media.Article) core.Responder {
func (obj *OfficialAccount) MaterialAddNews(p util.Map) Responder {
log.Debug("Material|AddNews", p)
u := util.URL(obj.RemoteURL(), materialAddNews)
return obj.Client().Post(context.Background(), u, nil, p)
}
//MaterialAddMaterial 新增其他类型永久素材
// http请求方式: POST,需使用https
// https://api.weixin.qq.com/cgi-bin/material/add_material?access_token=ACCESS_TOKEN&type=TYPE
func (obj *OfficialAccount) MaterialAddMaterial(filePath string, mediaType MediaType) Responder {
log.Debug("Material|AddMaterial", filePath, mediaType)
if mediaType == MediaTypeVideo {
log.Error("please use MaterialUploadVideo() function")
}
u := util.URL(obj.RemoteURL(), materialAddMaterial)
p := obj.accessToken.KeyMap()
p.Set("type", mediaType)
return Upload(u, p, util.Map{"media": filePath})
}
//MaterialUploadVideo 新增其他类型永久素材
// http请求方式: POST,需使用https
// https://api.weixin.qq.com/cgi-bin/material/add_material?access_token=ACCESS_TOKEN&type=TYPE
func (obj *OfficialAccount) MaterialUploadVideo(filePath string, title, introduction string) Responder {
log.Debug("Media|UploadVideo", filePath, title, introduction)
u := util.URL(obj.RemoteURL(), materialAddMaterial)
p := obj.accessToken.KeyMap()
p.Set("type", MediaTypeVideo)
return Upload(u, p, util.Map{
"media": filePath,
"description": util.Map{
"title": title,
"introduction": introduction,
}})
}
//MaterialGet 获取永久素材
// http请求方式: POST,https协议
// https://api.weixin.qq.com/cgi-bin/material/get_material?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) MaterialGet(mediaID string) Responder {
log.Debug("Material|Get", mediaID)
u := util.URL(obj.RemoteURL(), materialGetMaterial)
return obj.Client().Post(context.Background(), u, nil, util.Map{"media_id": mediaID})
}
//MaterialDel 删除永久素材
// http请求方式: POST
// https://api.weixin.qq.com/cgi-bin/material/del_material?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) MaterialDel(mediaID string) Responder {
log.Debug("Material|Del", mediaID)
u := util.URL(obj.RemoteURL(), materialDelMaterial)
resp := obj.Client().Post(context.Background(), u, nil, util.Map{"media_id": mediaID})
return resp
}
/*Article Article */
type Article struct {
Title string `json:"title"` // 标题
ThumbMediaID string `json:"thumb_media_id"` // 图文消息的封面图片素材id(必须是永久mediaID)
Author string `json:"author,omitempty"` // 作者
Digest string `json:"digest,omitempty"` // 图文消息的摘要,仅有单图文消息才有摘要,多图文此处为空。如果本字段为没有填写,则默认抓取正文前64个字。
ShowCoverPic string `json:"show_cover_pic"` // 是否显示封面,0为false,即不显示,1为true,即显示
Content string `json:"content"` // 图文消息的具体内容,支持HTML标签,必须少于2万字符,小于1M,且此处会去除JS,涉及图片url必须来源 "上传图文消息内的图片获取URL"接口获取。外部图片url将被过滤。
ContentSourceURL string `json:"content_source_url"` // 图文消息的原文地址,即点击“阅读原文”后的URL
NeedOpenComment uint32 `json:"need_open_comment,omitempty"` // (新增字段) 否 Uint32 是否打开评论,0不打开,1打开
OnlyFansCanComment uint32 `json:"only_fans_can_comment,omitempty"` // (新增字段) 否 Uint32 是否粉丝才可评论,0所有人可评论,1粉丝才可评论
}
//MaterialUpdateNews 修改永久图文素材
// http请求方式: POST
// https://api.weixin.qq.com/cgi-bin/material/update_news?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) MaterialUpdateNews(mediaID string, index int, articles []*Article) Responder {
log.Debug("Material|UpdateNews", mediaID)
u := util.URL(obj.RemoteURL(), materialUpdateNews)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"media_id": mediaID,
"index": index,
"articles": articles,
})
}
//MaterialGetCount 获取素材总数
// http请求方式: GET
// https://api.weixin.qq.com/cgi-bin/material/get_materialcount?access_token=ACCESS_TOKEN
func (obj *OfficialAccount) MaterialGetCount() Responder {
log.Debug("Material|GetMaterialCount")
u := util.URL(obj.RemoteURL(), materialGetMaterialcount)
return obj.Client().Get(context.Background(), u, nil)
}
//MaterialBatchGet 获取素材列表
// http请求方式: POST
// https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=ACCESS_TOKEN
//参数说明
//参数 是否必须 说明
//type 是 素材的类型,图片(image)、视频(video)、语音 (voice)、图文(news)
//offset 是 从全部素材的该偏移位置开始返回,0表示从第一个素材 返回
//count 是 返回素材的数量,取值在1到20之间
func (obj *OfficialAccount) MaterialBatchGet(mediaType MediaType, offset, count int) Responder {
log.Debug("Material|BatchGet", mediaType, offset, count)
u := util.URL(obj.RemoteURL(), materialBatchgetMaterial)
return obj.Client().Post(context.Background(), u, nil, util.Map{
"type": mediaType.String(),
"offset": offset,
"count": count,
})
}
/*MediaUpload 媒体文件上传接口
https://api.weixin.qq.com/cgi-bin/media/upload?access_token=ACCESS_TOKEN&type=TYPE
参数 是否必须 说明
access_token 是 调用接口凭证
type 是 媒体文件类型,分别有图片(image)、语音(voice)、视频(video)和缩略图(thumb)
media 是 form-data中媒体文件标识,有filename、filelength、content-type等信息
*/
func (obj *OfficialAccount) MediaUpload(filePath string, mediaType MediaType) Responder {
log.Debug("Media|Upload", filePath, mediaType)
u := util.URL(obj.RemoteURL(), mediaUpload)
p := obj.accessToken.KeyMap()
p.Set("type", mediaType)
return Upload(u, p, util.Map{"media": filePath})
}
/*MediaUploadThumb UploadVoice
see Upload
*/
func (obj *OfficialAccount) MediaUploadThumb(filePath string) Responder {
return obj.MediaUpload(filePath, MediaTypeThumb)
}
/*MediaUploadVoice UploadVoice
see Upload
*/
func (obj *OfficialAccount) MediaUploadVoice(filePath string) Responder {
return obj.MediaUpload(filePath, MediaTypeVoice)
}
/*MediaUploadVideo UploadVideo
see Upload
*/
func (obj *OfficialAccount) MediaUploadVideo(filePath string) Responder {
return obj.MediaUpload(filePath, MediaTypeVideo)
}
/*MediaUploadImage UploadImage
see Upload
*/
func (obj *OfficialAccount) MediaUploadImage(filePath string) Responder {
return obj.MediaUpload(filePath, MediaTypeImage)