# shopping-guide.guideCreateQrCode

本接口应在服务器端调用,详细说明参见服务端API

生成顾问二维码

生成顾问二维码后,微信用户扫码直接跳转公众号首页。分为两种情况:

  1. 微信用户已经关注公众号,扫码后绑定该顾问。
  2. 微信用户未关注公众号,扫码后 3 分钟内关注该公众号,则绑定该顾问。

# 请求地址

POST https://api.weixin.qq.com/cgi-bin/guide/guidecreateqrcode?access_token=ACCESS_TOKEN

# 请求参数

属性 类型 默认值 必填 说明
access_token string 接口调用凭证
guide_account string 顾问微信号(guide_account和guide_openid二选一)
guide_openid string 顾问openid或者unionid(guide_account和guide_openid二选一)
qrcode_info string 额外参数,用于事件推送

# 返回值

# Object

属性 类型 说明
qrcode_url string 点击链接即可下载生成的二维码
errcode number 错误码
errmsg string 错误信息

errcode 的合法值

说明 最低版本
0 成功
-1 系统失败
40003 无效的openid
43004 没有关注该服务号
9300801 无效的微信号
9300804 顾问不存在

# 请求数据示例

{
  "guide_account": "wx_account"
}

# 返回数据示例

{
  "qrcode_url":"xxxxxxx",
  "errcode": 0,
  "errmsg": "ok"
}