deep-linking

How to get facebook app link if app wasn't installed

↘锁芯ラ 提交于 2019-12-03 11:56:24
问题 How can I get the app link data if my app wasn't installed when the user tapped a deep link in the facebook app? There is surprisingly little documentation from facebook on this issue. I have a deep link https://fb.me/635533123230265 Which returns the HTML: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>App Link</title> <meta property="fb:app_id"

Android deep links not following path prefix

走远了吗. 提交于 2019-12-03 11:03:44
The closest I could find was this question here . but it doesnt quite cover the problem im having. I have deep links in my app setup to use /app as the path prefix. The problem I'm having is that links like http://example.com/upgrade are also trying to open in my app even though it doesn't have /app anywhere in the url. I understand you cant exclude urls specified by the prefix, but isn't the whole point of path prefix to include only those urls? basically I want links like these to deep link: http://example.com/app/home http://example.com/app/specials but not links like these: http://exaple

How to open dynamic links using Firebase notifications?

巧了我就是萌 提交于 2019-12-03 08:44:42
I am trying to implement Firebase notifications for our android app. I have also implemented Dynamic Links in the app. But, I am not able to figure out a way to send the notification with a dynamic link (so that on clicking the notification, a certain dynamic link is opened). I can only see an option to send a text notification. Is there any workaround or is this a limitation of FCM? You will have to implement a server side sending of the notification with a custom data as currently the console doesn't support it. (Using the custom key-value pairs wont work either as when your app is in

Ajax deep linking? [closed]

走远了吗. 提交于 2019-12-03 08:20:36
I have made a flex app deep link before but now I want to make an ajax app deep link. I have no idea where to start. I assume I need a way to listen for when the #hash in the url changes and be able to read it. And I assume I need a way to update the #hash in the url. Does anyone know how to do all that? Thanks! You're on the right track. For each state of the ajax page that you want to be able to link to, change the hash tag: window.location.hash = "this_state" When the page loads you'll need to check if the window.location.hash value matches one of your states and if it does make the app go

Open my app from URL scheme in Android

泄露秘密 提交于 2019-12-03 08:01:48
I know there are several questions on SO about this, but none of them are helping to resolve my issue. I want to be able to click a link from an email/text/browser and open my app. I have the AndroidManifest.xml code: <!-- Splash Activity --> <activity android:name=".ui.SplashActivity" android:label="@string/app_name" android:theme="@style/SplashTheme" android:launchMode="singleTask"> <!-- Launcher intent filter --> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <!-- Branch URI scheme -->

Instant Apps with NFC

会有一股神秘感。 提交于 2019-12-03 05:19:49
I'm trying to get an instant app to be opened via NFC. I have something like the below in my AndroidManifest.xml <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <action android:name="android.nfc.action.NDEF_DISCOVERED" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="https" /> <data android:scheme="http" /> <data android:host="example-refresh.herokuapp.com" /> </intent-filter> When going to https://example-refresh.herokuapp.com (example link obviously

How to make deferred deep linking?

醉酒当歌 提交于 2019-12-03 05:06:44
How to make deferred deep linking and generate unique mobile signature. I try using IP Address, screen-size, OS version, device name but still not get succeed. The comment links to a great answer, certainly. High level, here are the steps: Your links should point to a page on your site that collects a digital fingerprint That page should collect, at minimum, IP address, OS, OS version and screen size (width and height). Should send to your server and place in a persistent store. Redis works great for this because of its fast lookup times. Also record some sort of unique identifier for which

Can I update window.location.hash without having the web page scroll?

感情迁移 提交于 2019-12-03 04:27:33
Using JavaScript, is there a way to update window.location.hash without scrolling the web page? I have clickable title elements that toggle the visibility of a div directly beneath them. I want the /foo#bar in the history when clicking titles but don't want the page scrolling about. So when navigating away from /foo#bar I'll be able to use the back button and have the div whose ID is in window.location.hash be visible upon return. Is this behavior possible? This behavior is very much possible. You should look into some of the libraries that have been developed to give you this functionality.

iOS - Bug With Universal Links

做~自己de王妃 提交于 2019-12-03 03:21:50
问题 I have setup Universal Links in my iOS app exactly to details following the steps outlined here: How to Set Up Universal Links It validates 100% successfully using both Branch and Apple validators. But now that I'm trying to test out the finished product, I'm having trouble. If I type in or tap a link to my site (ex, www.mydomain.com), Safari/Chrome/Facebook goes right to my website. However, if I go to Google, type www.mydomain.com in as the search, locate the link to my site and long press

Universal links on iOS vs. deep links (URL schemes)

孤街醉人 提交于 2019-12-03 00:33:33
问题 As I'm reading, iOS 9 introduced Universal Links. In the "Support Universal Links" section in Apple's App Search Programming Guide, it says that this is not exactly like deep linking with URL schemes, but I'm not totally clear about this topic: What is actually the difference(s) between Universal Link and the URL Schemes? Is it that a Universal Link is only for hyperlinks in websites, and the Mail or Messages apps? Do Universal Links replace URL schemes? Are Universal Links a type of deep