- 特约商户进件(提交申请单)成功(商户入驻申请已完成)有没有通知 ?
特约商户进件(提交申请单)https://pay.weixin.qq.com/wiki/doc/apiv3_partner/apis/chapter11_1_1.shtml 这个接口调用完成之后,有没有通知(比如商户入驻申请已完成的通知)? 还是只能通过 查询申请单状态API查询?
2023-07-28 - 小程序添加模板失败?
添加模板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/code-management/undoAudit.html
2023-07-12 - 获取可设置的所有类目?
获取可设置的所有类目https://developers.weixin.qq.com/doc/oplatform/openApi/OpenApiDoc/miniprogram-management/category-management/getAllCategories.html exter_list 资质证明列表这个列表为空? 敏感类目和为非敏感类目都没有
2023-07-05 - 快速注册企业小程序和快速注册个人小程序事件推送,这2个InfoType都是一样的要怎么区分?
快速注册企业小程序和快速注册个人小程序事件推送,这2个InfoType都是一样的要怎么区分? 快速注册企业小程序 https://developers.weixin.qq.com/doc/oplatform/openApi/OpenApiDoc/register-management/fast-registration-ent/registerMiniprogram.html <xml> <AppId><![CDATA[第三方平台appid]]></AppId> <CreateTime>1535442403</CreateTime> <InfoType><![CDATA[notify_third_fasteregister]]></InfoType> <appid>创建小程序appid</appid> <status>0</status> <auth_code>xxxxx第三方授权码</auth_code> <msg>OK</msg> <info> <name><![CDATA[企业名称]]></name> <code><![CDATA[企业代码]]></code> <code_type>1</code_type> <legal_persona_wechat><![CDATA[法人微信号]]></legal_persona_wechat> <legal_persona_name><![CDATA[法人姓名]]></legal_persona_name> <component_phone><![CDATA[第三方联系电话]]></component_phone> </info> </xml> 快速注册个人小程序 https://developers.weixin.qq.com/doc/oplatform/openApi/OpenApiDoc/register-management/fast-registration-ind/fastRegisterPersonalMp.html <xml> <AppId><![CDATA[第三方平台appid]]></AppId> <CreateTime>1535442403</CreateTime> <InfoType><![CDATA[notify_third_fasteregister]]></InfoType> <appid>创建小程序appid</appid> <status>0</status> <auth_code>xxxxx第三方授权码</auth_code> <msg>OK</msg> <info> <wxuser><![CDATA[用户微信号]]></wxuser> <idname><![CDATA[用户姓名]]></wxidnnn> <component_phone><![CDATA[第三方联系电话]]></component_phone> </info> </xml>
2023-06-15 - 查询创建任务状态接口详情返回数据?
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