deep-linking

iOS Deeplink to a specific ViewController retaining view controller stack

一世执手 提交于 2019-12-11 04:40:02
问题 I'm developing an app for a client of mine and they want to be able to deeplink to a specific view controller from the app being terminated. Here is the current stack: Launch Screen Splash Screen (Here is where we download our config file) VC1 VC2 VC3 VC4 VC5 The client wants the ability, via a deeplink, to launch the app, and after the Splash Screen completes the config file download, to navigate to a specific view controller (VC1-VC5). The issue is that they want to retain the stack. So i

Deep link into eBay iOS app with custom URL scheme?

廉价感情. 提交于 2019-12-11 02:39:43
问题 In my app, I’d like a way to open the eBay application on a customer’s iOS device (if they have that app installed), and perform a search with a term I specify. I’ve noticed that opening an eBay:// URL does indeed open the app, but I can’t find any API documentation on eBay’s developer portal discussing what I’d like to do. Has anyone done this? Any idea what the rest of the URL would need to be in order to simply perform a search in the app with a given term, and perhaps some specified

How to implement Google App indexing for Android

萝らか妹 提交于 2019-12-11 02:15:45
问题 How should I properly implement google app indexing for android. I mean should I care about local autocompletion and web search separately? Here are two URLs: https://codelabs.developers.google.com/codelabs/app-indexing/#0 https://developers.google.com/app-indexing/android/publish#add-app-indexing-api-calls Which one should I use? What is essetial differnce between these two guides? Is the first one for autocompletion only, and the second one for just ranking web pages? 回答1: Those two

How to find out which facebook mobile install ad was clicked after installing the promoted iOS app

北慕城南 提交于 2019-12-11 00:47:48
问题 When a user clicks on a facebook mobile install ad on ios an app store window pops up. As answered here What happens to an iOS deeplink when the app is not installed? it's not possible to put any custom parameters to be an launch parameter on the first app launch. Is there a way after the downloaded app was opened and the user logged in with facebook to get information about which ad he clicked befor? Because actually there is a connection between ad, itunes app id, and facebook app id, isn't

How to open video url in external player in react-native

只谈情不闲聊 提交于 2019-12-10 23:09:49
问题 I need to open links like this http://somedomen.com/someplaylist.m3u8 in external videoplayer. I can't find the specific url scheme for this to Linking (so Linking.openURL('video:http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4'); not works Linking.openURL('intent://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4#Intent;action=android.intent.action.VIEW;scheme=http;type=video/mp4;end'); not works too ) I trying the module https://www.npmjs.com/package

Html disable android deep link

ぃ、小莉子 提交于 2019-12-10 21:24:22
问题 Is there any way to tell a webpage link (the < a > tag) to NOT deep link to an android app and to stay in the browser. I'm referring to what can be done in on the website, not the app. 回答1: The application will kick in any time the intent url pattern matches the deeplink pattern in its manifest. I think that if you know what is the pattern, you can work around something 来源: https://stackoverflow.com/questions/30109005/html-disable-android-deep-link

Universal Deep Links with Mandrill sub domain

微笑、不失礼 提交于 2019-12-10 18:45:15
问题 I have Universal Deep Links working for my iOS app, Neighbourly (associated with neighbourly.co.nz) We send out emails to our users and use Mandrill to track clicks. The email links go to a subdomain clicks.neighbourly.co.nz/path which points to mandrillapp.com/path and the links redirect to neighbourly.co.nz/newpath Ive added applinks:clicks.neighbourly.co.nz to the apps associated domains. My apple-app-site-association file's paths is a wildcard: ["*"] But, while links to neighbourly.co.nz

Trying to enable deep linking to android app, testing intent can't launch activity

此生再无相见时 提交于 2019-12-10 17:20:11
问题 I'm trying to enable deep linking so that certain links launch my app. I read this turotial https://developer.android.com/training/app-indexing/deep-linking.html and following it pretty close but when I try to test it by using adb to send the VIEW intent to the app I just get the error Error: Activity not started, unable to resolve Intent { act=android.intent.actio n.VIEW dat=example://gizmos flg=0x10000000 pkg=com.myapp.DeepLinkActivity } DeepLinkActivity.java public class DeepLinkActivity

Android app link is not working fine

半世苍凉 提交于 2019-12-10 16:07:38
问题 I've been playing with app links with a test example but it's not working in my case. I've created two html files source.html and some_html_file.html within the assets directory.I'm loading source.html file within a webview and that has button and I'm navigating to some_html_file.html using that button. See the source you'll get to know what I'm doing here. source.html <html> <form name = "type_1" action="some_html_file.html"> <input type="submit" value="Example 1 - open some html file"/> <

React Native open Facebook page

安稳与你 提交于 2019-12-10 15:56:17
问题 I've been trying to open Facebook page using React Native Linking API. It doesn't work for me. I do have Facebook app installed. Here is what I tried: Linking.openURL('fb://page/<page_name>'); Linking.openURL('fb://profile/<profile_name>'); Linking.openURL('http://facebook.com/<page_name>'); I also tried to use Communications library: Communications.web(url) . None works for Facebook and Instagram. However it works like a charm for Google Maps, Apple Maps, Twitter and other big guys. I was