- 第三方平台通过pc版授权链接进行授权回调url执行了两次
https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/operation/authorization/authorization_management.html https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/Before_Develop/Authorization_Process_Technical_Description.html#二、授权链接构建的方法 [图片]通过这个进行授权回调url接收到两次信息,这大概会是什么原因
2023-12-15 - 申请接口的推送
https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/apply_api/apply_privacy_interface.html 接口文档中推送的xml格式如下 <xml> <ToUserName><![CDATA[gh_fb9688c2a4b2]]></ToUserName> <FromUserName><![CDATA[od1P50M-fNQI5Gcq-trm4a7apsU8]]></FromUserName> <CreateTime>1488856741</CreateTime> <MsgType><![CDATA[event]]></MsgType> <Event><![CDATA[wxa_privacy_apply]]></Event> <result_info> <api_name>"wx.choosePoi"</api_name> <apply_time>"1644805538"</apply_time> <audit_id>"421609337"</audit_id> <audit_time>"1644828435"</audit_time> <reason>"小程序内未含有相应使用场景"</reason> <status>"2"</status> </result_info> </xml> 其中<result_info>下内容均加引号,在转化xml过程中就需要对引号进行额外处理。 请问该格式是统一的吗,还是就该推送为这样的格式?
2022-05-12