SDK推送现金红包

# SDK推送现金红包 ## 请求方式 get ### 请求参数 | 参数 | 说明 | 类型 | 备注 | 是否必填 | | ------- | -------- | ------ | ------------------------| -------- | | _handle | 处理类 | string | 固定值:ShareTaskedPage | 是 | | _method | 处理方法 | string | 固定值:SDKPush | 是 | | uid | 用户编号 | int | 用户编号 | 是 | | money | 金额 | double | 金额 | 是 | | title | 途径 | string | 途径 | 是 | | time | 时间戳 | long | 十位时间戳 | 是 | | sign | 签名 | string | MD5(ShareTaskedPage#SDKPush#uid#money#time#key) | 是 | #### 示例 ``` 分享站域名/api/index/index.aspx?_handle=ShareTaskedPage&_method=SDKPush&uid=1&money=5&title=1&time=1&sign=1 ``` #### 返回值 ``` json { "code":1, //code为0 表示失败 msg是错误信息 "msg":"", "data":[] } ```