React Native - Universal Linking
網址跳轉手機原生 App 功能,iOS 稱 Universal Links ,Android 稱 Deep Linking,原理是在裝置上新增 URL Scheme 設定,當開啟特定規則的連結時可以開啟 App,用這個方法可以提升應用程式跨 Web 與 Mobile App 平台的使用體驗,當使用者開啟連結時,判斷裝置上是否有安裝 App ,有的話會直接開啟 App,若沒有則使用瀏覽器開啟網頁版提供檢視,或者直接導向到該裝置平台的 App 下載畫面 (iOS 的 App Store / Android 的 Google Play)
設定方法
設定希望開啟 App 的 url scheme,你可以自定義一組 url 並且在安裝 App 時向裝置註冊這個 url 與 App 的綁定。例如你做了一個 ToDoApp,你可以設定開啟你ToDoApp的連結為 myToDo://blabla
,由於安裝時,會對這個 url 做註冊,當你開啟這個連結時就會跳轉到你的 App。
如果你想註冊自己的 domain 為 url ,iOS 上需要額外做 domain 的驗證,確認你是 domain 的擁有者,帶來的好處是可以達到當使用者開啟 domain 連結時,如果有安裝 mobile App 可以直接用 native App 開啟,如果沒有的話則會自動使用瀏覽器打開網站。
iOS 設定 Associated Domains
需要在你網站上新增一個 route ,你可以選擇直接掛在 domain 根目錄下或是多一層 .well-known
範例如下
https://<fully qualified domain>/apple-app-site-association
或是
https://<fully qualified domain>/.well-known/apple-app-site-association
接下來要讓這個 route 回傳 JSON 格式的內容 內容範例:
1 | { |
App ID 格式
1 <Team Identifier>.<Bundle Identifier>
paths 可以設定想要跳轉的 url 路徑規則
設定 App Url Scheme
iOS
Info.plist
1
2
3
4
5
6
7
8
9
10
11<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>https://your.domain.com</string>
</array>
<key>CFBundleURLName</key>
<string></string>
</dict>
</array>
AppDelegate.m
1 |
|
Android
1 | <intent-filter android:label="<YOUR_APP_NAME>"> |
React Native 端處理
新增監聽 UniversalLinking 函式,並在 App 進入點的 componentDidMount
執行
1 | listenUniversalLinking = () => { |
在 componentWillUnmount
事件加上移除監聽事件
1 | componentWillUnmount() { |
appWokeUp 處理
1 | appWokeUp = (event) => { |
resetStackToProperRoute 處理
1 | resetStackToProperRoute = (url) => { |
測試方法 Test Universal Links, Deep Linking
可以在裝置或模擬器上的瀏覽器輸入網址來進行測試 或是更方便的透過下列指令來直接在裝置或模擬器上開啟網址
iOS
1 | xcrun simctl openurl booted "https://domain.com/something" |
Android
1 | adb shell am start -a android.intent.action.VIEW -d "https://domain.com/something" |