收到 B 站的广告短信,里面有 b23.tv 为域名的超链接
我的手机是红米 K20P
点击链接会提示 1 使用浏览器打开 2 BILIBILI
点击 BILIBILI 直接就打开了 APP,并跳转到活动页。
请问大佬们这个是怎么实现的呢
1
mayx 2020-06-02 10:46:00 +08:00 via Android
把 bilibili:// 注册成协议,然后 html 页只要一访问就会打开 blilbilil
|
2
JasperYanky 2020-06-02 10:47:21 +08:00
url scheme
|
3
thonatos 2020-06-02 10:49:58 +08:00
有个东西叫做 universal-links.
附上文档: https://developer.apple.com/ios/universal-links/ |
4
Vegetable 2020-06-02 10:53:59 +08:00 2
<intent-filter>
<action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="http" android:host="b23.tv"/> <data android:scheme="https" android:host="b23.tv"/> </intent-filter> |
5
flashrick OP |