您的位置:首页 > 编程学习 > > 正文

php关注公众号发送消息(php实现QQ小程序发送模板消息功能)

更多 时间:2021-10-23 10:52:40 类别:编程学习 浏览量:2635

php关注公众号发送消息

php实现QQ小程序发送模板消息功能

QQ小程序群里有伙伴要发送模板消息的代码,所以今天给大家分享QQ小程序模板消息发布,绝对一步一步带着大家走,每个细节都讲到。

今天先用php简单写一下,有空了再写java的。

首先创建一个空项目:

因为QQ小程序没有编译器,先用微信小程序创建。

php关注公众号发送消息(php实现QQ小程序发送模板消息功能)

然后新建一个页面,直接上html代码:

  1. <form bindsubmit="form_submit" report-submit="true">
  2. <button formType="submit">这是模板发送按钮</button>
  3. </form>

然后写js逻辑:

php关注公众号发送消息(php实现QQ小程序发送模板消息功能)

然后上js代码

  1. form_submit(e) {
  2. console.log(e.detail.formId)
  3. var that = this
  4. wx.showToast({
  5. title: '正在发送模板消息请求',
  6. duration: 5000,
  7. icon: 'loading',
  8. mask: true
  9. })
  10. //推送消息
  11. wx.login({
  12. success: function (res) {
  13. console.log("获得的code");
  14. console.log(res)
  15. var code = res.code;//发送给服务器的code
  16. console.log("获得用户信息成功");
  17. if (code) {
  18. wx.request({
  19. url: 'https://xxxx/tokentest.php',//服务器的地址,现在微信小程序只支持https请求,所以调试的时候请勾选不校监安全域名
  20. data: {
  21. code: code,
  22. formID: e.detail.formId,
  23. },
  24. header: {
  25. 'content-type': 'application/json'
  26. },
  27. success: function (res) {
  28. console.log(res.data);
  29. wx.setStorageSync('useropenid', res.data)
  30. wx.showToast({
  31. title: '发送模板消息成功!',
  32. })
  33. }
  34. })
  35. }
  36. else {
  37. console.log("获取用户登录态失败!");
  38. }
  39. },
  40. fail: function (error) {
  41. console.log('login failed ' + error);
  42. }
  43. })
  44. },

这里简单说一下原理:

微信小程序、QQ小程序想要发送模板消息给用户,必须要用户在小程序前端有提交表单的动作出现,所以我们在html中写了个form标签来完成这一要求,然后在js端接受该表单返回的formid,这个表单id是有七天时效的,也就是说在7天之内可以向用户发送模板消息。综上,发送模板消息需要两个东西:一是用户的openid(发给谁),二是用户的formid(有表单提交动作)。

我们在js中拿到了用户的formid但是没有拿到openid,所以需要请求后台去拿用户的openid。
拿openid需要用用户提交上去的code,和小程序的appid及appsercet三把钥匙去请求微信服务器,返回用户的openid.

申请一个模板templateid:

php关注公众号发送消息(php实现QQ小程序发送模板消息功能)
php关注公众号发送消息(php实现QQ小程序发送模板消息功能)
php关注公众号发送消息(php实现QQ小程序发送模板消息功能)

然后是后台程序php:

tokentest.php

  1. form_submit(e) {
  2. console.log(e.detail.formId)
  3. var that = this
  4. wx.showToast({
  5. title: '正在发送模板消息请求',
  6. duration: 5000,
  7. icon: 'loading',
  8. mask: true
  9. })
  10. //推送消息
  11. wx.login({
  12. success: function (res) {
  13. console.log("获得的code");
  14. console.log(res)
  15. var code = res.code;//发送给服务器的code
  16. console.log("获得用户信息成功");
  17. if (code) {
  18. wx.request({
  19. url: 'https://xxxx/tokentest.php',//服务器的地址,现在微信小程序只支持https请求,所以调试的时候请勾选不校监安全域名
  20. data: {
  21. code: code,
  22. formID: e.detail.formId,
  23. },
  24. header: {
  25. 'content-type': 'application/json'
  26. },
  27. success: function (res) {
  28. console.log(res.data);
  29. wx.setStorageSync('useropenid', res.data)
  30. wx.showToast({
  31. title: '发送模板消息成功!',
  32. })
  33. }
  34. })
  35. }
  36. else {
  37. console.log("获取用户登录态失败!");
  38. }
  39. },
  40. fail: function (error) {
  41. console.log('login failed ' + error);
  42. }
  43. })
  44. },

appid和appsercet在小程序后台弄:

php关注公众号发送消息(php实现QQ小程序发送模板消息功能)

最后看一下效果吧:

php关注公众号发送消息(php实现QQ小程序发送模板消息功能)

总结

以上所述是小编给大家介绍的php实现QQ小程序发送模板消息功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我们网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

原文链接:https://blog.csdn.net/weixin_41606022/article/details/98104687

您可能感兴趣