这个tid填多少?通过getPubTemplateTitleList获取一堆tid,放到这个里面没啥用?
小程序添加模板失败?添加模板https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/mp-message-management/subscribe-message/addMessageTemplate.html 请求 { "tid": 615, "kidList": [1,2 ], "sceneDesc": "开课提醒" } 返回{"errmsg":"missing parameter tid rid: 64b0ae23-3167c0cc-2d2136e9","errcode":200014,"rid":"64b0ae23-3167c0cc-2d2136e9"}
2023-07-14[图片]
获取可设置的所有类目?获取可设置的所有类目https://developers.weixin.qq.com/doc/oplatform/openApi/OpenApiDoc/miniprogram-management/category-management/getAllCategories.html exter_list 资质证明列表这个列表为空? 敏感类目和为非敏感类目都没有
2023-07-05网址 https://developers.weixin.qq.com/doc/oplatform/openApi/OpenApiDoc/register-management/fast-registration-ind/fastRegisterPersonalMp.html
查询创建任务状态接口详情返回数据?POST https://api.weixin.qq.com/wxa/component/fastregisterpersonalweapp?action=query&component_access_token=ACCESS_TOKEN 查询创建任务状态接口详情 这个接口返回的啥? 和快速注册个人小程序一样吗? 请求数据示例 快速注册个人小程序 POST https://api.weixin.qq.com/wxa/component/fastregisterpersonalweapp?action=create&component_access_token=ACCESS_TOKEN { "idname": "tencent", // 个人用户名字 "wxuser": "wxidnnn", // 个人用户微信id "component_phone": "1234567" //第三方联系电话 } 返回数据示例 { "errcode": 0, // 状态码,0成功,其他失败 "errmsg": "OK" // 错误信息 "taskid": "xxxxx". // 任务id,后面query查询需要用到 "authorize_url": "https://mp.weixin.qq.com/xxxx", // 给用户扫码认证的验证url "status": 0 // 任务的状态 } 示例说明: 查询创建任务状态请求数据示例 POST https://api.weixin.qq.com/wxa/component/fastregisterpersonalweapp?action=query&component_access_token=ACCESS_TOKEN { "taskid": "xxxxx" // 创建任务成功时,返回的taskid } 返回数据示例 { "errcode": 0, // 状态码,0成功,其他失败 "errmsg": "OK", // 错误信息 "taskid": "xxxxx". // 任务id,后面 query 查询需要用到 "authorize_url": "https://mp.weixin.qq.com/xxxx", // 给用户扫码认证的验证url "status": 0 // 任务的状态 }
2023-06-14