只能等客服,问解决方案。他这应该是第三方分发平台,可能当日次数耗尽了,第二天试试
相寻APP下载不了?相寻APP下载不了,什么时候能解决?门客服像机器人一样只说一这句话 [图片] [图片] [图片]
2024-06-12wx.request的header头可以试试加一下你想要的东西
wx.request可以配置SSL证书吗?如题,如果一个后端请求,接口提供方要求必须带SSL证书,在通过wx.request发起请求时,有没有办法加载证书信息附带到请求中去。
2024-06-12历下区就行
备案地址山东省济南市缺少了高新区?[图片] [图片]
2024-06-12保证服务器返回和云开发一致,就不会有差别
利用云开发的小程序上线后,再换成例如腾讯云其他的服务器,小程序还能正常运行吗?还是之前的小程序吗?利用微信开发者工具的云开发,小程序上线后,再换成例如腾讯云的服务器,小程序还可以正常运行吗,换之后用户使用界面还是之前那个小程序不?
2024-06-11下载地址是必填吗? 我记得的创建的时候是非必填的
微信开放平台无法创建新移动应用微信开放平台无创建新移动应用,所有资料都填写齐全,最后需要填写AppStore下载地址,我们的APP已经上架AppStore但是使用的是苹果的ABM分发方式,这种分发方式不是所有用户都能直接下载,需要使用苹果分发的下载码,在AppStore兑换下载,这种分发方式APP已经上架AppStore但是并没有下载链接,下载形式是使用兑换码,所以无法提供AppStore下载地址,在开放平台就没法进行下一步,无法创建新应用,我们比较着急,希望能尽快得到帮助解决。
2024-06-11是的 2023年就提bug了 https://developers.weixin.qq.com/community/develop/doc/000c24a3190ef88b1d2f462915b000?_at=1717576095090
wx.join1v1Chat双人音视频通话怎么使用代码主动退出?使用wx.exitVoIPChat的话,只有接听方能退出,拨打方还挺留在当前界面,而且界面直接卡死了,所有按钮点不了,只有通话时长还在一直读,只能退出小程序才能关闭。
2024-06-05检查地图坐标系是否统一
用户发布定位获取返回经纬度坐标,与实际地图定位不匹配。怎么解决?/** * 中文地址解析为经纬度 * * @param address * @return */ public ResponseResult<RegeoModel> regeo(String address) { ResponseResult<RegeoModel> result = new ResponseResult<>(); result.setStatus(-1); try { String url = "https://apis.map.qq.com/ws/geocoder/v1/?address="; URIBuilder urlBuilder = new URIBuilder(url); urlBuilder.addParameter("address", address); urlBuilder.addParameter("key", key); HttpGet httpGet = new HttpGet(urlBuilder.build()); HttpResponse httpResponse = httpClient.execute(httpGet); if (validHttpStatusCode(httpResponse)) { result.setStatus(ResponseResult.status_success); String response = EntityUtils.toString(httpResponse.getEntity()); logger.debug("", response); JSONObject map = JSONObject.parseObject(response); if (map.getInteger("status") == 0) { JSONObject resultData = map.getJSONObject("result"); RegeoModel regeoModel = new RegeoModel(); JSONObject location = resultData.getJSONObject("location"); regeoModel.setLng(location.getBigDecimal("lng")); regeoModel.setLat(location.getBigDecimal("lat")); JSONObject addressComponents = resultData.getJSONObject("address_components"); regeoModel.setProvince(addressComponents.getString("province")); regeoModel.setCity(addressComponents.getString("city")); regeoModel.setDistrict(addressComponents.getString("district")); regeoModel.setStreet(addressComponents.getString("street")); JSONObject adInfo = resultData.getJSONObject("ad_info"); if (adInfo != null && adInfo.get("adcode") != null) { regeoModel.setAdCode(adInfo.getString("adcode")); } result.setData(regeoModel); return result; } else { result.setStatus(map.getInteger("status")); lo
2024-06-05common包里都是代码吗,有静态资源吗
如何将微信小程序主包中的common和uni_modules这两个文件减小?我是用uniapp做的,如何将微信小程序主包中的common和uni_modules这两个文件减小 组件已经尽可能转到分包了,剩下的都是好几个分包共用的组件,common和uni_modules一直很大,有什么办法减小吗,各位大神帮忙看看 [图片]
2024-06-05ssl证书配置好了吗
发布的体验版小程序,部分体验者微信访问网络请求正常,部分体验者微信访问网络异常?开发的小程序还未备案,添加了几个体验成员,发布了体验版准备测试一下,结果发现部分体验者微信访问网络请求正常,部分体验者微信访问提示:当前网络繁忙,请稍后重试---自己加的http异常返回日志。 微信小程序AppId:wxf1789d2df8f8e600
2024-06-05检查经纬度赋值。非洲大海一般是0,0
接入腾讯地图插件后,用户的坐标错位,为什么却定位到了非洲大海里?<template> <view class="content"> <map id="map" :latitude="latitude" :longitude="longitude" :style="{ width: '100%', height: windowHeight + 'px' }" :scale="10" @markertap="markTap"></map> </view> </template> <script> export default { data() { return { _mapContext: null, windowHeight: 0, latitude: 23.099994, longitude: 113.324520, } }, onLoad() { }, onReady() { uni.getSystemInfo({ success: (res) => { this.windowHeight = res.windowHeight; }, }); // 创建map对象 this._mapContext = uni.createMapContext("map", this); this.cluster(); }, methods: { markTap(e) { console.log('ccccccc') console.log(e) console.log('ccccccc') uni.showToast({ title: `客户名称${e.markerId}` }) }, // 点聚合 cluster() { // 仅调用初始化,才会触发 on.("markerClusterCreate", (e) => {}) this._mapContext.initMarkerCluster({ enableDefaultStyle: false, // 是否使用默认样式 zoomOnClick: true, // 点击聚合的点,是否改变地图的缩放级别 gridSize: 60, // 聚合计算时网格的像素大小,默认60 complete(res) { console.log('initMarkerCluster', res) } }); this._mapContext.on("markerClusterCreate", (res) => { console.log("markerClusterCreate", res); const clusters = res.clusters const markers = clusters.map(cluster => { const { center, clusterId, markerIds } = cluster return { ...center, width: 0, height: 0, clusterId, // 必须 label: { content: markerIds.length + '', fontSize: 16, color: '#ffffff', width: 50, height: 50, bgColor: '#00A3FA', borderRadius: 25, textAlign: 'center', anchorX: 0, anchorY: -20, } } }) this._mapContext.addMarkers({ markers, clear: false, complete(res) { console.log('clusterCreate addMarkers', res) } }) }); this._mapContext.on('markerCl
2024-06-05