非微信环境的H5打开小程序和微信app

拿到小程序appid和secret,调接口,详情见 https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/access-token/auth.getAccessToken.html 微信官方文档,获取小程序 scheme 码

微信小程序官方文档

1.URL Scheme 对安卓系统兼容不是很好,还是需要 location.href = 'weixin://dl/business/?t=TICKET'

2,安卓系统,短信里直接点击 URL Link,进入的是 官方H5网页,然后点击跳转到小程序。

安卓 只能点击Link 不能点击 Scheme

URL Link 更好一些。并且兼容性也强,也不需要自定义H5页面,用户体验高于urlScheme

技术实现

步骤一:生成url schema

讲述如何生成?

获取access_token

拿到小程序appid和secret,调接口

详情见https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/access-token/auth.getAccessToken.html微信官方文档

获取小程序 scheme 详情见https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/url-scheme/urlscheme.generate.html微信官方文档

openlink就是小程序 scheme 码

你可能感兴趣的:(非微信环境的H5打开小程序和微信app)