公众号关联了3个小程序,如果都要单独认证,加上公众号,一年就是300*4=1200块钱。这样就搞不起了。 如果使用在已经认证的公众号里面的“小程序管理”里面点击“快速注册小程序”,以后每年还需要单独缴费认证吗?
公众号关联的小程序第二年如何复用公众号的认证?我一个公众号上关联了三四个个小程序。公众号认证过了,但是提示小程序要认证。如何让关联的小程序能够复印公众号的认证而不需要重新认证?
2023-12-08您好,下面是主要代码段。 https://developers.weixin.qq.com/s/l9Jifcm37uKM tabbar里面有"首页"、"管理"、"我的"3个页签。 调试时,显示的起始页面是“首页” 代码提交测试通过、发布出来以后,打开小程序,显示的起始页面是第二个页面“管理”,不是第一个页面“首页”
tabbar里启动页面不对app.josn { "cloud": true, "entryPagePath":"pages/home/activity", "pages": [ "pages/home/activity", "pages/home/index", "pages/home/detail", "pages/home/genealogy", "pages/home/ebook", "pages/home/pedigree", "pages/home/hamlets/index", "pages/home/hamlets/hamlet", "pages/home/tombs/index", "pages/home/tombs/tomb", "pages/home/temples/index", "pages/home/temples/temple", "pages/home/prefaces/index", "pages/home/prefaces/preface", "pages/home/biographies/index", "pages/home/biographies/biography", "pages/home/search/index", "pages/home/clan/index", "pages/home/clan/album", "pages/home/clan/append", "pages/home/clan/update", "pages/mime/index", "pages/logs/logs" ], "requiredPrivateInfos":[ "chooseLocation", "getFuzzyLocation" ], "permission":{ "scope.userFuzzyLocation":{ "desc":"你的位置信息将用于小程序位置接口的" } }, "window": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#fff", "navigationBarTitleText": "WeChat", "navigationBarTextStyle": "black" }, "tabBar": { "list": [ { "pagePath": "pages/home/activity", "iconPath": "resources/images/activity_normal.png", "selectedIconPath": "resources/images/activity_hot.png", "text": "首页" },{ "pagePath": "pages/home/index", "iconPath": "resources/images/home_normal.png", "selectedIconPath": "resources/images/home_hot.png", "text": "管理" },{ "pagePath": "pages/mime/index", "iconPath": "resources/images/my_normal.png", "selectedIconPath": "resources/images/my_hot.png", "text": "我的" } ] }, "style": "v2", "sitemapLocation": "sitemap.json" } 调试状态下,小程序启动后,初始页面是pages/home/activity,可是发布版本运行后,初始页面变成了pages/home/index。 请问如何解决这个问题
2023-08-04我想在地形图上拾取位置,这个目前是无法实现吗?
wx.chooseLocation如何显示卫星地形图?wx.chooseLocation这个接口选择位置时只能显示平面地形图。我们需要在卫星地形图上选择位置、拾取GPS,如何实现?
2022-02-22