
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
react-native-applinks
Advanced tools
React Native App Links is a JavaScript library for React Native that implements App Links protocol, helping you link to content in other apps and handle incoming deep-links.
App Links protocol documentation is available at applinks.org: app links navigation protocol
var React = require('react-native');
var { LinkingIOS } = React;
var AppLinkURL = require('react-native-applinks').AppLinkURL;
var MyApp = React.createClass({
componentDidMount: function() {
LinkingIOS.addEventListener('url', this._handleOpenURL);
var url = LinkingIOS.popInitialURL();
if (url) { this._handleOpenURL({url: url}); }
},
componentWillUnmount: function() {
LinkingIOS.removeEventListener('url', this._handleOpenURL);
},
_handleOpenURL: function(event) {
var alUrl = new AppLinkURL(event.url)
// work with alUrl.appLinkData. For example render back link to referer app.
var backLink = null;
var refererAL = alUrl.appLink.referer_app_link;
// if referer app link was provided we can construct back button with text
if (refererAL) {
backLink = {
url: refererAL.url,
text: 'Back' + refererAL.app_name ? ' to ' + refererAL.app_name : ''
};
}
}
}
For fetching app link data from web url you need to use AppLinkNavigation and AppLinkResolver classes. React Native App Links library provides two implementations of AppLinkResolver:
var React = require('react-native');
var { LinkingIOS } = React;
var AppLinks = require('react-native-applinks');
var { AppLinkNavigation, IndexAPIAppLinkResolver, NativeAppLinkResolver } = AppLinks;
var MyApp = React.createClass({
_openOutgoingWebUrl(weburl) {
var fbResolver = new IndexAPIAppLinkResolver('your_app_facebook_token');
// var nativeResolver = new NativeAppLinkResolver();
var alNavigation = new AppLinkNavigation(
fbResolver, // nativeResolver,
{ target_url: 'http://myapp.com', url: 'myapp://home', app_name: 'My App' },
'iphone'
);
// fetch best possible deeplink from web url's app link data and open using LinkingIOS
alNavigation.fetchUrlFromWebUrl(weburl, LinkingIOS.openURL, (err) => { /* handle error */ });
}
React Native App Links requires or works with
npm install react-native-applinks
React Native App Links is BSD-licensed. We also provide an additional patent grant.
FAQs
AppLinks support for React Native. applinks.org
We found that react-native-applinks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.