有没有办法找出pubg Mobile特定页面的深层链接

时间:2019-12-07 09:49:13

标签: react-native mobile-development deeplink

我需要找出pubg mobile的创建房间页面的深层链接。 就像该应用程序在单击按钮时打开到创建房间页面一样。

1 个答案:

答案 0 :(得分:0)

尝试使用此库

  

“轻松链接到React Native中的其他应用程序。如果该应用程序未安装在用户的手机上,请改为打开App Store或Play Store链接。”

https://github.com/FiberJW/react-native-app-link

npm i -S react-native-app-link


import AppLink from 'react-native-app-link';

AppLink.maybeOpenURL(url, { appName, appStoreId, appStoreLocale, playStoreId }).then(() => {
  // do stuff
})
.catch((err) => {
  // handle error
});

AppLink.openInStore({ appName, appStoreId, appStoreLocale, playStoreId }).then(() => {
  // do stuff
})
.catch((err) => {
  // handle error
});