- 小程序违规整改后申诉?
您好! 我们收到一封违规通知,如下: 小程序因违规被强制暂停服务,用户不可正常访问小程序,请完成整改后提交申诉。暂停服务不影响小程序代码提交及发布。 我们已在版本2.8.0修改完成并通过审核(已发布),麻烦撤销暂停服务的惩罚,万分感谢!
2019-10-06 - 已经添加内容过滤,请求批准审核?
已经在后台添加内容过滤机制,请批准 opt($ch,CURLOPT_URL,$get_token_url); curl_setopt($ch,CURLOPT_HEADER,0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); $res = curl_exec($ch); curl_close($ch); $json_obj = json_decode($res,true); //根据openid和access_token查询用户信息 $accesstoken = $json_obj['access_token']; $post_url = 'https://api.weixin.qq.com/wxa/msg_sec_check?access_token='.$accesstoken; $ch = curl_init(); curl_setopt($ch,CURLOPT_URL,$post_url); curl_setopt($ch,CURLOPT_HEADER,0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); $post_data = array( "content" => $content ); $data_string = json_encode($post_data,JSON_UNESCAPED_UNICODE); curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json' )); $res = curl_exec($ch); curl_close($ch); $json_obj = json_decode($res,true); return $json_obj;
2019-10-03