微信公众平台接口测试帐号申请
https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login
调试工具
https://mp.weixin.qq.com/debug
公众号开发文档
https://developers.weixin.qq.com ... arted/Overview.html
用法简单介绍
1.获取 access_token 方法:GET (token 有效时间2小时,用一次算一次 日2000次应该用不完)
- https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=【appid】&secret=【appsecret】
复制代码
2. 获取公众号内的用户OPenID 方法:GET (只需要手动获取一次就行,这是公众号内唯一的)
- https://api.weixin.qq.com/cgi-bin/user/get?access_token=【步骤1获取的token】&next_openid=
复制代码
3.发送消息 方法:POST
- https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=【步骤1获取的token】
- Post Data 内容 json格式
- {
- "touser": "【步骤2获取的OpenID】",
- "msgtype": "text",
- "text": {
- "content": "Hello World"
- }
- }
复制代码
主要使用接口有
获取access_token
获取用户列表
客服接口-发消息
|