-
Notifications
You must be signed in to change notification settings - Fork 94
/
example_test.go
69 lines (59 loc) · 2.02 KB
/
example_test.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
package wechat_test
import (
"net/http"
"github.com/esap/wechat" // 微信SDK包
// "github.com/labstack/echo"
)
func Example() {
wechat.Debug = true
cfg := &wechat.WxConfig{
Token: "yourToken",
AppId: "yourAppID",
Secret: "yourSecret",
EncodingAESKey: "yourEncodingAesKey",
}
app := wechat.New(cfg)
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
ctx := app.VerifyURL(w, r)
// 根据消息类型主动回复
switch ctx.Msg.MsgType {
case wechat.TypeText:
ctx.NewText(ctx.Msg.Content).Reply() // 回复文字
case wechat.TypeImage:
ctx.NewImage(ctx.Msg.MediaId).Reply() // 回复图片
case wechat.TypeVoice:
ctx.NewVoice(ctx.Msg.MediaId).Reply() // 回复语音
case wechat.TypeVideo:
ctx.NewVideo(ctx.Msg.MediaId, "video title", "video description").Reply() //回复视频
case wechat.TypeFile:
ctx.NewFile(ctx.Msg.MediaId).Reply() // 回复文件,仅企业微信可用
default:
ctx.NewText("其他消息类型" + ctx.Msg.MsgType).Reply() // 回复模板消息
}
})
http.ListenAndServe(":9090", nil)
}
// func Example_echo() {
// app := wechat.New("yourToken", "yourAppID", "yourSecret", "yourEncodingAesKey")
// e := echo.New()
// e.Any("/", func(c echo.Context) error {
// ctx := app.VerifyURL(c.Response().Writer, c.Request())
// // 根据消息类型主动回复
// switch ctx.Msg.MsgType {
// case wechat.TypeText:
// ctx.NewText(ctx.Msg.Content).Reply() // 回复文字
// case wechat.TypeImage:
// ctx.NewImage(ctx.Msg.MediaId).Reply() // 回复图片
// case wechat.TypeVoice:
// ctx.NewVoice(ctx.Msg.MediaId).Reply() // 回复语音
// case wechat.TypeVideo:
// ctx.NewVideo(ctx.Msg.MediaId, "video title", "video description").Reply() //回复视频
// case wechat.TypeFile:
// ctx.NewFile(ctx.Msg.MediaId).Reply() // 回复文件,仅企业微信可用
// default:
// ctx.NewText("其他消息类型" + ctx.Msg.MsgType).Reply() // 回复模板消息
// }
// return nil
// })
// e.Start(":9090")
// }