deep-linking

Minimum API for implementing Android Deep Linking

冷暖自知 提交于 2020-01-05 13:09:49
问题 I follow Android official tutorial for implementing android deep linking. Here is the requirement for this tutorial: Android Studio version 1.0+ The sample code The Google app version 2.8+ A test device with Android 4.1+ A USB micro to USB cable. So base on this, I can understand minimum API for deep linking is Android 4.1 (API >= 17). But after I follow, I really don't see any functions that use API>=17. You just register in manifest.xml file and handle in activity, done. So my question is:

Branch.io parameters missing when appended to an existing link

拈花ヽ惹草 提交于 2020-01-03 14:09:27
问题 I am trying to make it so a user clicks a Branch.io link in the form https://a.test-app.link/identifier?foo=bar and then be redirected to the AppStore to download the app. The app should then be able to grab the foo parameter during launch. To debug this I have followed this procedure: Create the link under the test environment. Tap the link on the device. Install app with Xcode. Launch the app and read the parameters during launch with let branch = Branch.getTestInstance() branch.setDebug()

Branch.io parameters missing when appended to an existing link

只愿长相守 提交于 2020-01-03 14:08:43
问题 I am trying to make it so a user clicks a Branch.io link in the form https://a.test-app.link/identifier?foo=bar and then be redirected to the AppStore to download the app. The app should then be able to grab the foo parameter during launch. To debug this I have followed this procedure: Create the link under the test environment. Tap the link on the device. Install app with Xcode. Launch the app and read the parameters during launch with let branch = Branch.getTestInstance() branch.setDebug()

ionic 3 deeplinking for reset password

落花浮王杯 提交于 2020-01-03 02:23:25
问题 I am creating a mobile application using ionic 3. I need to know the logic to implement reset password functionality. till now, i am able to send an email with reset token to the user. I was thinking that id user clicks on the link in the email, if app is installed then it should open the application page dedicated for reset password. So i did a little research and found that it can be done using DeepLinking ( custom url to respond) like myApp://resetPassword/{token} Now the problem is in

Match URIs with <data> like http://example.com/something in AndroidManifest

試著忘記壹切 提交于 2020-01-01 04:53:10
问题 I am struggling with the <data> element in the AndroidManifest.xml file to get my URI matching working. I want to match the following URIs: http://example.com/something http://example.com/foo http://example.com/foo/ but not http://example.com http://example.com/ http://example.com/something/else I got it mostly working with <data android:scheme="http" android:host="example.com" android:pathPattern="/..*" /> <data android:pathPattern="/..*/" /> but it still matches http://example.com/something

Pass param to app when installed from Google Play

自闭症网瘾萝莉.ら 提交于 2019-12-31 14:34:18
问题 I need to support the following scenario: User receives the e-mail with link to my app. If user already has the app installed the link should open the app passing some data in the intent to the launcher activity. If the app is not installed yet the e-mail link should act as campaign referrer: direct user to Google Play to install the app with referrer url that is passed to my app after installation in referrer broadcast receiver. 回答1: You need to intercept the com.android.vending.INSTALL

Get request part after hash sign

北战南征 提交于 2019-12-30 08:07:16
问题 My web-site has AJAX-powered search, that uses deep-linking. When user follows a link … http://example.com/articles#/?tags=Mac%20OS,review … tags "Mac OS" and "review" should already been selected in a search form and articles, related to "Mac OS" and "review" should be presented on the page. I have following scenario, that a need to fix User follows the link http://example.com/articles#/?tags=Mac%20OS During initial page rendering, all articles are fetched On the client side, hash-part is

Why this deep link (applink), generated by facebook does not work?

安稳与你 提交于 2019-12-30 07:28:27
问题 I want to make a button on my website, that will allow user to open native facebook app (if it is installed), or open facebook website otherwise. As i understood, i have to create separate html page for that. I tried facebook hosted app links to get working App Links example. Following code was generated by facebook, it can be accessed by this url. I have tried to open this link with iOS (Safari, Chrome), Android (default browser, Chrome). Despite i have facebook app installed on both devices

Link to Safari “Add to Home Screen” from inside app?

末鹿安然 提交于 2019-12-29 04:25:06
问题 My app has a custom URL scheme and can use deep linking to jump straight from a URL to some content. I'd love to replicate the behaviour in the recent Facebook Groups app, which allows the user to hit an "Add to Home Screen" button in the app, which takes them out to a custom-designed localhost page in Safari, allowing them to tap Safari's Share and Add to Home Screen buttons, which will then add an icon to their home screen which, when tapped, takes them into the Groups app, and to the

Why full/long dynamic link is not getting retrieved/received?

好久不见. 提交于 2019-12-28 07:05:11
问题 I'm creating a deep/dynamic link following this github project. Here's the link which is getting created: https://appcode.app.goo.gl/?link=http://example.com/-example&apn=com.abc.xxx&amv=16&ad=0&extraParameter=null This is the method I'm using for sharing it: private void shareDeepLink(String deepLink) { Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_SUBJECT, "Firebase Deep Link"); intent.putExtra(Intent.EXTRA_TEXT, deepLink);