# shopping-guide.setGuideCardMaterial

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

添加小程序卡片素材

# 请求地址

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

# 请求参数

属性 类型 默认值 必填 说明
access_token string 接口调用凭证
media_id string 图片素材,只能用《素材管理获取media_id》
type number 操作类型,填0,表示服务号素材
title string 小程序卡片名字
path string 小程序路径
appid string 必须填小程序的appid

# 返回值

# Object

属性 类型 说明
errcode number 错误码
errmsg string 错误信息

errcode 的合法值

说明 最低版本
0 成功
-1 系统失败
9300819 media_id有误
9300821 小程序卡片内appid不符合要求
9300817 小程序卡片素材个数超过上限

# 请求数据示例

{
  "type": 0,
  "media_id": "xxxxxxxx",
  "title": "xxxxx",
  "path": "xxxxxxxx",
  "appid":"xxxxxx"
}

# 返回数据示例

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