- 微信公众号开发页面没有违规却被封,而且一直无法解封?
公众号开发写了一个打印php信息的页面,但是被封了,同时一个导航页面也被封号,无法访问,希望相关人员可以解释一下 [图片][图片]
2021-05-19 - 门店小程序如何添加多个门店?
我们有一个营业执照,但是目前在武汉有五家分店,请问如何添加多门店?我只可以添加一个,第二个就会显示经营资质已添加,请勿重复添加,求解答
2021-04-27 - 公众号会员卡接口激活的url必须是小程序的url吗?
在公众号创建会员卡,选择接口激活方案,开放文档说可以跳转到用户自定义页面,但是activate_app_brand_user_name的注释确是与activate_url对应的小程序user_name,所以接口激活的activate url到底对应着什么?[图片][图片]
2021-04-26 - 调用jssdk接口getlocation为什么没有返回值啊?
<?php $appid="**************"; $secret="**********************"; $url="https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$appid."&secret=".$secret.""; $output = gettoken($url); $token=(array)json_decode($output); $access = $token['access_token']; $ticket0 = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=".$access."&type=jsapi"; $ticket1 = gettoken($ticket0); $ticket2=(array)json_decode($ticket1); $ticket = $ticket2['ticket']; $noncestr="Wm3WZYTPz0wzccnW"; $timestamp=time(); $url="http://xz155559.applinzi.com/location.php"; $string = "jsapi_ticket=".$ticket."&noncestr=".$noncestr."×tamp=".$timestamp."&url=".$url.""; $signature = sha1($string); function gettoken($url){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0(Windows NT 6.1;WOW64)AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 safari/537.22"); curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $output = curl_exec($ch); curl_close($ch); return $output; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>获取当前位置</title> </head> <body> <div></div> </body> <script src="http://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script> <script> wx.config({ debug: true, appId: "**************", timestamp: $timestamp, nonceStr: $noncestr, signature: $signature, jsApiList: [ // 所有要调用的 API 都要加到这个列表中 'getLocation' ] }); wx.getLocation({ type: 'wgs84', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02' complete: function (res) { var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90 var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。 var speed = res.speed; // 速度,以米/每秒计 var accuracy = res.accuracy; // 位置精度 } }); </script> </html> [图片]先感谢各位提供回答的朋友,这个问题困扰我太久,请你们不吝赐教,你的一句话可能就是答案。谢谢
2021-03-12 - 在官方demo中调用getlocation接口为什么会报invalid signature错误?
[图片]
2021-03-11 - 请问微信公众号如何授权给别人开发?
要与别人合作开发公众号,但是公众号是由对方申请注册的,如何授权给我来开发?
2021-01-05