# shopping-guide.getGuideConfig
本接口应在服务器端调用,详细说明参见服务端API。
获取快捷回复与关注自动回复
如果要获取服务号维度的新客户关注自动回复,不填guide_account与guide_openid即可
# 请求地址
POST https://api.weixin.qq.com/cgi-bin/guide/getguideconfig?access_token=ACCESS_TOKEN
# 请求参数
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
access_token | string | 是 | 接口调用凭证 | |
guide_account | string | 是 | 顾问微信号(guide_account和guide_openid二选一) | |
guide_openid | string | 是 | 顾问openid或者unionid(guide_account和guide_openid二选一) |
# 返回值
# Object
属性 | 类型 | 说明 |
---|---|---|
guide_fast_reply_list | Array.<Object> | 快捷回复列表 |
errcode | number | 错误码 |
errmsg | string | 错误信息 |
guide_auto_reply | Object | 第一条新客户关注自动回复 |
guide_auto_reply_plus | Object | 第二条新客户关注自动回复 |
guide_fast_reply_list 的结构
属性 | 类型 | 说明 |
---|---|---|
content | string | 快捷回复 |
guide_auto_reply 的结构
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
content | string | 是 | 新客户关注自动回复内容 | |
msgtype | int | 是 | 1表示文字,2表示图片,3表示小程序卡片 |
guide_auto_reply_plus 的结构
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
content | string | 是 | 新客户关注自动回复内容 | |
msgtype | int | 是 | 1表示文字,2表示图片,3表示小程序卡片 |
errcode 的合法值
值 | 说明 | 最低版本 |
---|---|---|
0 | 成功 | |
-1 | 系统失败 | |
40003 | 无效的openid | |
9300801 | 无效的微信号 | |
9300804 | 顾问不存在 |
# 请求数据示例
{
"guide_account": "张三"
}
# 返回数据示例
快捷回复demo:
{
"guide_fast_reply_list": [
{
"content": "快捷回复",
"updatetime": 11111
}
],
"errcode": 0,
"errmsg": "ok"
}
自动回复demo:
{
"errcode":0,
"errmsg":"ok",
"guide_fast_reply_list":[],
"guide_auto_reply":{"msgtype":3,"content":"{\"title\":\"abc\",\"appid\":\"abc\",\"path\":\"abc\",\"pic_url\":\"abc",\"master_id\":abc,\"str_master_id\":\"abc\",\"slave_id\":abc,\"str_slave_id\":\"abc\"}","updatetime":111},"updatetime":111,
"guide_auto_reply_plus":{"msgtype":2,"content":"abc","updatetime":1589270333}
}