免費呼叫微信推送介面

trykle發表於2024-06-20

註冊測試公眾號

https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login

掃碼開通後,將會出現後臺頁面,拿到這四個值

  • appID

  • appsecret

  • 接受訊息者,掃碼拿到 openId ,也就是接受者的id號

  • template_id

    模板內容固定格式,演示的content是將要推送訊息的key

推送訊息

第一步,拿到臨時推送授權token

GET

https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={appId}&secret={appsecret}

第二步,開始推送

POST application/json

https://api.weixin.qq.com/cgi-bin/message/template/send?access_token={access_token}
{
    "touser": "{openId}",
    "template_id": "{template_id}",
    "url": "https://weixin.qq.com",
    "data":{
        "content":{
            "value":"這裡是提醒的內容"
        }
    }
}

相關文章