微信开发系列之九 - 在微信里直接创建SAP C4C的社交媒体消息

简介: 微信开发系列之九 - 在微信里直接创建SAP C4C的社交媒体消息

标题:Wechat development series 9 – Create C4C Social Media Message and Service within Wechat app


文章系列目录

Wechat development series 1 – setup your development environment

Wechat development series 2 – development Q&A service using nodejs

Wechat development series 3 – Trigger C4C Account creation in Wechat app

Wechat development series 4 – Send C4C Data change notification to Wechat app

Wechat development series 5 – embedded your UI5 application to Wechat app

Wechat development series 6 – Retrieve Wechat User info via oAuth2 and display it in UI5 application

Wechat development series 7 – use Redis to store Wechat conversation history

Wechat development series 8 – Map integration

Wechat development series 9 – Create C4C Social Media Message and Service within Wechat app

Wechat development series 10 – Use Wechat app to receive Service Request reply made from C4C

In the second blog of this series, Wechat development series 2 – development Q&A service using nodejs we have developed a kind of Q&A service in Wechat.image.pngimage.pngn this blog, let’s replace the Q&A service hosted by tuning API with another style: everytime the end user of your test subscription account has sent some message to it, then create a corresponding social media message in C4C system ( and a new service request will also be automatically created together with that social media message ).


Implemented feature

(1) When the end user has subscribed the Wechat account by pressing “Subscribe(关注)” button:image.pngn C4C system an individual customer for this end user who has subscribed the Wechat test account will automatically be created, together with a new social media user profile created as well and bound to this individual customer. The end user will receive a notification about created customer ID and profile ID once creation finishes in C4C system.image.pngimage.pngimage.pngThe created information could also be monitored in console:

image.pngThe created customer could be found in C4C system with a custom Channel type displayed as “Jerry’s Wechat Channel”.image.pngThe created social media user profile bound to this customer could be found in tab “Social Profiles”:image.png(2) As long as end user sends some new text to the Wechat subscription account, a new social media message will be created in C4C.

The end user will receive a notification in Wechat about the created message ID, in my example it is 59160.image.pngimage.pngThe created social media message could be found in tab “Social Media Messagesimage.pngAnd a new ticket is also automatically created for this social media message. The creation of this ticket is a standard behavior of C4C, no custom development is necessary.image.pngImplementation detail

The feature described so far is developed based on the existing project used in previous blogs.


You must first create a custom channel for Wechat in Business Configuration:image.pngimage.pngWrite down this channel type code 905 for created Wechat channel:

image.pngAnd create a concrete channel based on the 905 custom channel type created just now, write down this channel ID ZJERRYWC as well.image.pngHow to create individual customer, social media user profile, and bind both together

In my github repository for this Wechat development series,

module createAccountInC4C.js is responsible for individual customer creation. Once finished, it will call another two modules highlighted below to create social media user profile and link the user profile with created individual customer.image.pngFor social media user profile creation, the ID of previous created custom channel for Wechat, 905, is hard coded in module implementation createSocialMediaProfile.js.image.pngIn createAccountInC4C.js, these three steps are clearly mentioned in the comment and implementation:image.pngAnd createAccount will be called for event handler of “subscribe” event:image.pngHow to create social media message once end user sends a text to Wechat subscription account

The message creation is implemented in module createSocialMediaActivity.js.

In unittest folder there is a unit test written to demonstrate how to use this module:image.png(1) o0KlM1i2_4-zHRmDk-IWGRlA1Cjc: the wechat ID of user who has sent the text to the test Subscription account

(2) 1003: the ID of new social media message to be created

(3) 6066: social media user profile of current wechat user who has sent the text to the test Subscription account

(4) ZJERRYWC: the custom Wechat channel ID created previously in C4C system

(5) “Hello C4C Agent….”: the text of social media message to be created

Call this createSocialMessage module in the event handler when a new text is sent by Wechat end user.





相关文章
|
6月前
|
XML JavaScript 测试技术
如何打通 SAP Cloud for Customer 系统和微信公众号的双向消息通信功能(二)
如何打通 SAP Cloud for Customer 系统和微信公众号的双向消息通信功能
62 0
|
6月前
|
JavaScript 前端开发 API
如何打通 SAP Cloud for Customer 系统和微信公众号的双向消息通信功能(一)
如何打通 SAP Cloud for Customer 系统和微信公众号的双向消息通信功能
43 0
|
7月前
|
SQL JavaScript 前端开发
SAP Field Service Management 和微信集成的案例分享和实现介绍
SAP Field Service Management 和微信集成的案例分享和实现介绍
61 0
|
XML JavaScript API
如何打通 SAP Cloud for Customer 系统和微信公众号的双向消息通信功能(3)
如何打通 SAP Cloud for Customer 系统和微信公众号的双向消息通信功能
|
JavaScript 前端开发 测试技术
如何打通 SAP Cloud for Customer 系统和微信公众号的双向消息通信功能(2)
如何打通 SAP Cloud for Customer 系统和微信公众号的双向消息通信功能
|
JSON JavaScript 安全
基于Windows微信实现实时收发微信消息App
基于Windows微信实现实时收发微信消息App
1160 0
基于Windows微信实现实时收发微信消息App
|
NoSQL Redis 开发者
数据类型-案例:微信接收消息顺序控制| 学习笔记
快速学习数据类型-案例:微信接收消息顺序控制
188 0
数据类型-案例:微信接收消息顺序控制| 学习笔记
|
存储 JSON 小程序
unicloud云函数开发微信客服消息自动回复图片消息(完整步骤)
unicloud云函数开发微信客服消息自动回复图片消息(完整步骤)
350 0
unicloud云函数开发微信客服消息自动回复图片消息(完整步骤)
|
JSON 小程序 数据格式
.NET之微信消息模板推送
.NET之微信消息模板推送
153 0
.NET之微信消息模板推送