Skip to content

使用Go语言实现类似server酱的微信推送服务

Notifications You must be signed in to change notification settings

AustinZhang1024/WeChatPush

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

企业微信推送服务

由于server酱即将于2021年4月底停止服务, 故自己使用Go语言重新实现类似于server酱的推送服务以作代替。

使用方法

浏览器访问http://localhost:8080/?text=test 即可向企业微信推送test。 网页返回错误码errcode,具体参考接口定义

目前仅实现URL的文本推送,之后可能会实现网页端入口以及其他推送方式。

配置文件

配置文件需要在项目目录的config中配置config.jsontoken.json。 其中token.json无需手动配置即可自动生成。

config.json配置如下

{
  "id": "corpid",
  "secret": "corpsecret",
  "appid": "appid",
  "user": "username"
}

其中idsecret对应文档corpidcorpsecretappid为企业应用的id,user为要发送消息的用户名。

About

使用Go语言实现类似server酱的微信推送服务

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages