- 小程序加密scheme有查看PV/UV的数据报表或接口吗?
想分析一下自己的中转H5->打开小程序URLScheme->小程序实际打开的数据漏斗
10-29 - PC端小程序webview内的iframe没有业务域名的限制吗?
webview打开的html代码,是一个使用了iframe技术的google验证码demo <html> <head> <title>reCAPTCHA demo: Explicit render for multiple widgets</title> <script type="text/javascript"> var verifyCallback = function(response) { alert(response); }; var widgetId1; var widgetId2; var onloadCallback = function() { // Renders the HTML element with id 'example1' as a reCAPTCHA widget. // The id of the reCAPTCHA widget is assigned to 'widgetId1'. widgetId1 = grecaptcha.render('example1', { 'sitekey' : '6LdmnCYqAAAAAAe48En8XHFW1NqVFnxir4qK5sO9', 'theme' : 'light' }); widgetId2 = grecaptcha.render(document.getElementById('example2'), { 'sitekey' : '6LdmnCYqAAAAAAe48En8XHFW1NqVFnxir4qK5sO9', }); grecaptcha.render('example3', { 'sitekey' : '6LdmnCYqAAAAAAe48En8XHFW1NqVFnxir4qK5sO9', 'callback' : verifyCallback, 'theme' : 'dark' }); }; </script> </head> <body> 手机端效果 [图片] pc端效果 [图片]
09-04 - 小程序内使用webview加载的页面,如果想使用第三方验证码服务的话,有什么方案吗?
是不是会受到业务域名的限制? 有什么成熟方案吗?
07-25