发送小程序分享消息

请求地址(请替换{}内的参数):

http://api.weiyunbot.com/api/wxbot/sendshareappmsg

请求信息

URI 参数

暂无参数

Body 参数

SendShareAppMsgModel
参数名描述类型备注
botid

机器人编号

string

必填

targetid

接收人编号:群组编号或者联系人编号(不可混合发送,不支持同时发送给好友与群组),多个数据用字符串数组.示例代码中的JSON值需要添加双引号或者单引号

string

必填

sharetitle

分享标题(长度50以内,可空)

string

必填

最大长度: 50

shareurl

分享链接,必须以http开头的链接地址(长度500以内)

string

必填

最大长度: 500

sharedesc

分享备注(长度100以内,可空)

string

必填

最大长度: 100

shareiconurl

分享图标链接,必须以http开头的图片地址(长度500以内,可空)

string

必填

最大长度: 500

shareiconpath

shareIconPath

string

必填

最大长度: 500

sourceusername

sourceUserName

string

必填

最大长度: 500

sourcedisplayname

sourceDisplayName

string

必填

最大长度: 500

weappinfo_username

weappinfo_username

string

必填

最大长度: 500

weappinfo_appid

weappinfo_appid

string

必填

最大长度: 500

weappinfo_type

weappinfo_type

string

必填

最大长度: 500

weappinfo_version

weappinfo_version

string

必填

最大长度: 500

weappinfo_weappiconurl

weappinfo_weappiconurl

string

必填

最大长度: 500

weappinfo_pagepath

weappinfo_pagepath

string

必填

最大长度: 500

weappinfo_shareid

weappinfo_shareId

string

必填

最大长度: 500

weappinfo_appservicetype

weappinfo_appservicetype

string

必填

最大长度: 500

appkey

AppKey应用ID

string

必填

clienttime

客户端时间UNIX时间戳

integer

必填

signature

签名,参见签名生成方法

string

必填

请求参数

application/json, text/json

示例:
{
  "botId": "sample string 1",
  "targetId": "sample string 2",
  "shareTitle": "sample string 3",
  "shareUrl": "sample string 4",
  "shareDesc": "sample string 5",
  "shareIconUrl": "sample string 6",
  "shareIconPath": "sample string 7",
  "sourceUserName": "sample string 8",
  "sourceDisplayName": "sample string 9",
  "weappinfo_username": "sample string 10",
  "weappinfo_appid": "sample string 11",
  "weappinfo_type": "sample string 12",
  "weappinfo_version": "sample string 13",
  "weappinfo_weappiconurl": "sample string 14",
  "weappinfo_pagepath": "sample string 15",
  "weappinfo_shareId": "sample string 16",
  "weappinfo_appservicetype": "sample string 17",
  "AppKey": "sample string 18",
  "ClientTime": 19,
  "Signature": "sample string 20"
}

返回结果

结果描述

发送小程序分享消息

ApiResult
参数名描述类型备注
success

是否成功1成功;0失败

integer

暂无.

msg

结果描述

string

暂无.

返回格式

application/json, text/json

示例:
{
  "success": 1,
  "msg": "sample string 2"
}