> 关注公众号【爱发白日梦的后端】分享技术干货、读书笔记、开源项目、实战经验、高效开发工具等,您的关注将是我的更新动力!
![](https://files.mdnice.com/user/38913/9ba43b8c-e69e-4dd4-9a34-9dddbf0eb58a.png)
# 背景
最近的某个副业需要我写一个脚本(脚本内容就不说了),需要通知群成员,尽快地做出响应。所以去找一下 Go 是否有这样的类库。
在这个脚本里面,我只需要发送信息的能力即可。
# `openwechat`
在寻找了一会之后发现 `https://github.com/eatmoreapple/openwechat` 这个库,这个库支持以下能力:
- 消息回复、给指定对象(好友、群组)发送文本、图片、文件、emoji表情等消息
- 热登陆(无需重复扫码登录)、自定义消息处理、文件下载、消息防撤回
- 获取对象信息、设置好友备注、拉好友进群等
这很明显已经满足我的需求了,毕竟我的需求超简单的!
# 例子
那我们立刻使用项目中的 README.md 例子来测试一下。
```go
package main
import (
"fmt"
"github.com/eatmoreapple/openwechat"
)
func main() {
bot := openwechat.DefaultBot(openwechat.Desktop) // 桌面模式
// 注册消息处理函数
bot.MessageHandler = func(msg *openwechat.Message) {
if msg.IsText() && msg.Content == "ping" {
msg.ReplyText("pong")
}
}
// 注册登陆二维码回调
bot.UUIDCallback = openwechat.PrintlnQrcodeUrl
// 登陆
if err := bot.Login(); err != nil {
fmt.Println(err)
return
}
// 获取登陆的用户
self, err := bot.GetCurrentUser()
if err != nil {
fmt.Println(err)
return
}
// 获取所有的好友
friends, err := self.Friends()
fmt.Println(friends, err)
// 获取所有的群组
groups, err := self.Groups()
fmt.Println(groups, err)
// 阻塞主goroutine, 直到发生异常或者用户主动退出
bot.Block()
}
```
这段代码的内容比较简单:
- 在浏览器中显示二维码
- 用户扫码模拟微信登录
- 获取扫码微信的信息
- 获取用户所有的好友
- 获取用户所有的群组
但是这里有两个问题需要注意:
- 模式只能选择桌面模式,当我使用网页版模式的时候会报以下错误: `login forbidden: try to login with desktop mode`
- 我猜测是因为微信那边已经不运营微信网页版了
![image.png](https://static.golangjob.cn/240203/6e0f347ecaf71b9ab3ce8d29b072d5c1.png)
- 获取的不是所有的群聊
- 从 [issue](https://github.com/eatmoreapple/openwechat/issues/441 "issue") 找到解答:需要将群聊保存到通讯录才行。
# 实现对特定群发送文本消息
因为作者封装得还算不错,发送文本消息非常简单,就一个函数的事情。
```go
func main() {
bot := openwechat.DefaultBot(openwechat.Desktop) // 桌面模式
// 注册登陆二维码回调
bot.UUIDCallback = openwechat.PrintlnQrcodeUrl
// 登陆
if err := bot.Login(); err != nil {
fmt.Println(err)
return
}
// 获取登陆的用户
self, err := bot.GetCurrentUser()
if err != nil {
fmt.Println(err)
return
}
// 获取所有的群组
groups, err := self.Groups()
for _, group := range groups {
if group.NickName == "爱发白日梦的后端" {
_, err = self.SendTextToGroup(group, "Hello!!!群里的朋友大家好呀!!!")
if err != nil {
panic(err)
}
}
}
// 阻塞主goroutine, 直到发生异常或者用户主动退出
bot.Block()
}
```
核心的函数就是 SendTextToGroup 这个方法,直接调用即可发送群消息了。
效果如下:
![image.png](https://static.golangjob.cn/240203/5b79600884c2ceeb797a74efdd0fea62.png)
# 总结
虽然我目前的需求已经被满足了,不过这个库里面的好多功能我都没有去用过,也没有在这里介绍,感兴趣的同学可以自行深入去了解。
有疑问加站长微信联系(非本文作者)