当前位置:   article > 正文

微信小程序实现客服消息自动回复(回复图片消息)_微信小程序客服消息

微信小程序客服消息

借鉴自微信小程序实现客服消息自动回复(回复图片消息) - 掘金 (juejin.cn)

微信小程序实现客服消息自动回复(回复图片消息)

回复消息的种类有很多,text文本消息,img图片消息,link链接消息,miniprogrampage小程序卡片消息。下面只说回复图片消息(这个在大部分教程里面都没写过,其他的可以自行在掘金上搜索)

在做图片消息自动回复之前,根据微信文档描述,需要现将图片上传到临时文件服务器,而且图片保存时间有效期只有三天

前提

  • 小程序已经开通了“云开发”功能
  • 在微信开发者工具中打开“云开发”,点“设置”,点击“其它设置”,点击“添加消息推送”(添加消息类型为“image”和“event”两种消息推送设置),点击“确定”
  • 目前微信小程序用户使用客服功能,必须通过固定的按钮进行触发,在下文展示
  • 按钮触发后小程序会主动发送客服图片消息

实现

小程序index.wxml文件中实现

需要将 button 组件 open-type 的值设置为 contact,当用户点击后就会进入客服会话,如果用户在会话中点击了小程序消息,则会返回到小程序,开发者可以通过 bindcontact 事件回调获取到用户所点消息的页面路径 path 和对应的参数 query,此外,开发者可以通过设置 session-from 将会话来源透传到客服。

<button open-type="contact" bindcontact="handleContact" session-from="sessionFrom">客服</button>

 云函数config.json配置文件

  1. {
  2. "permissions": {
  3. "openapi": [
  4. "wxacode.get",
  5. "customerServiceMessage.send",
  6. "customerServiceMessage.uploadTempMedia"
  7. ]
  8. }
  9. }

 小程序云函数入口文件index.js实现

  1. // 云函数入口文件
  2. const cloud = require('wx-server-sdk')
  3. cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV }) // 使用当前云环境
  4. // 下载云存储图片
  5. // 讲图片上传到小程序云开发的存储中可以得到文件的fileID
  6. let downLoad = async(event, context) => {
  7. const res = await cloud.downloadFile({
  8. fileID: 'cloud://example.png'
  9. })
  10. const buffer = res.fileContent
  11. return buffer
  12. }
  13. // 把媒体文件上传到微信服务器
  14. let upload = async(Buffer) => {
  15. return await cloud.openapi.customerServiceMessage.uploadTempMedia({
  16. type: 'image',
  17. media: {
  18. contentType: 'image/png',
  19. value: Buffer
  20. }
  21. })
  22. }
  23. // 云函数入口函数
  24. exports.main = async (event, context) => {
  25. const wxContext = cloud.getWXContext()
  26. await cloud.openapi.customerServiceMessage.send({
  27. touser: wxContext.OPENID,
  28. msgtype: 'text',
  29. text: {
  30. content: '欢迎来到印象派肖像!我是您的客服,非常高兴为您服务。如果您有任何关于摄影作品、展览或其他方面的问题,都可以随时向我咨询。如果您需要帮助或有任何疑问,请随意问我。您也可以通过搜索下面的微信号添加我为好友,我将随时为您提供帮助和回答问题。期待与您互动,分享摄影的乐趣!祝您在我们的小程序中度过愉快的时光!',
  31. },
  32. })
  33. await cloud.openapi.customerServiceMessage.send({
  34. touser: wxContext.OPENID,
  35. msgtype: 'text',
  36. text: {
  37. content: 'a1803233552',
  38. },
  39. })
  40. // 客服消息
  41. let Buffer = await downLoad()
  42. let meida = await upload(Buffer)
  43. await cloud.openapi.customerServiceMessage.send({
  44. touser: wxContext.OPENID,
  45. msgtype: "image",
  46. image: {
  47. "media_id": meida.mediaId
  48. }
  49. })
  50. return 'success'
  51. }

效果 

 

 

 备注

customerServiceMessage.uploadTempMedia 的使用: 把媒体文件上传到微信服务器。目前仅支持图片。用于发送客服消息或被动回复用户消息。 云调用是微信云开发提供的在云函数中调用微信开放接口的能力,需要在云函数中通过 wx-server-sdk 使用。 调用实例

  1. // cloud = require('wx-server-sdk')
  2. // ...
  3. // 方法返回 Promise
  4. cloud.openapi.customerServiceMessage.uploadTempMedia({
  5. type: 'image',
  6. media: {
  7. contentType: 'image/png',
  8. value: Buffer
  9. }
  10. })

cloud.downloadFile的使用 从云存储空间下载文件 其中下载文件的返回类型为 ArrayBuffer 调用实例

  1. wx.cloud.downloadFile({
  2. fileID: 'a7xzcb'
  3. }).then(res => {
  4. console.log(res.data)
  5. }).catch(error => {
  6. // handle error
  7. })
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/341553
推荐阅读
相关标签
  

闽ICP备14008679号