applinks

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"

When can I use a SFSafariViewController, WKWebView, or UIWebView with universal links?

十年热恋 提交于 2019-12-03 08:32:06
问题 In the Universal Links section of the iOS App Search Programming Guide, Apple says: If you instantiate a SFSafariViewController, WKWebView, or UIWebView object to handle a universal link, iOS opens your website in Safari instead of opening your app. However, if the user taps a universal link from within an embedded SFSafariViewController, WKWebView, or UIWebView object, iOS opens your app. What does "handle a universal link" mean? Can I not ever open the given URL with an

Using App Links Hosting API for link shared on Facebook from iOS app

偶尔善良 提交于 2019-12-03 07:45:58
问题 I've honestly spent hours on this trying to get it to work. Unfortunately Facebook & App Link's documentation is not clear enough. Even the App Links video from F8. App Requirements: Share a link to FB as an Open Graph story which users can click on to take them directly into my app and do specific tasks (my app needs to receive specific parameters from the link) Share the link to FB without FB login (i.e. via the Share Dialog and switch to the native iOS FB app as opposed to using API calls)

When can I use a SFSafariViewController, WKWebView, or UIWebView with universal links?

我的未来我决定 提交于 2019-12-02 22:19:21
In the Universal Links section of the iOS App Search Programming Guide , Apple says: If you instantiate a SFSafariViewController, WKWebView, or UIWebView object to handle a universal link, iOS opens your website in Safari instead of opening your app. However, if the user taps a universal link from within an embedded SFSafariViewController, WKWebView, or UIWebView object, iOS opens your app. What does "handle a universal link" mean? Can I not ever open the given URL with an SFSafariViewController , WKWebView , or UIWebView ? Does it only apply during -[UIApplicationDelegate application

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

为君一笑 提交于 2019-12-01 01:18:49
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, i am redirected to facebook website. Why does it happen? How i can make it open native apps? <html>

How to use Facebook deferred deep linking feature for new installs and to test the same before publishing iOS App to appStore?

落爺英雄遲暮 提交于 2019-11-30 12:41:56
问题 I have done some exploration and have found the following things, this is what I have done so far: Implemented custom URL, like myApp:// Added FacebookAppID, display name to my info.plist file Included the Facebook SDK Created Facebook app link through Facebook mobile hosting API and got the URL something like: https://fb.me/1601524146753610 Used the above URL as deep link while creating app-install Ads. Implemented the below function in my AppDelegate.m - (BOOL)application:(UIApplication *

Cannot get the new AppLinks to work on iOS or Android

こ雲淡風輕ζ 提交于 2019-11-30 11:19:33
问题 Latest Update Below at Update #5 I'm trying to implement AppLinks for BOTH my iOS AND Android apps : http://applinks.org I've done the following: setup a custom url scheme for my app: inacho:// Setup in my App Delegate: - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation Add meta tags to my website at http://www.nachorater.com : <meta property="al:ios:app_store_id" content="581815579"/> <meta property=

Android URI schemes vs App Links

左心房为你撑大大i 提交于 2019-11-30 03:21:39
问题 Android App Links works only from Android 6.0, unlike Deep Links from Android 4.2 but what the difference in behavior and coding? I read the documentation but did not see the difference. Deep Links: https://developer.android.com/training/app-indexing/deep-linking.html App Links: https://developer.android.com/training/app-links/index.html 回答1: URI Scheme Deep Linking (Android 4.2) The standard URI scheme deep linking (Android 4.2) allowed developers to register an app for URI scheme i.e.

How to use Facebook deferred deep linking feature for new installs and to test the same before publishing iOS App to appStore?

蹲街弑〆低调 提交于 2019-11-30 03:20:26
I have done some exploration and have found the following things, this is what I have done so far: Implemented custom URL, like myApp:// Added FacebookAppID, display name to my info.plist file Included the Facebook SDK Created Facebook app link through Facebook mobile hosting API and got the URL something like: https://fb.me/1601524146753610 Used the above URL as deep link while creating app-install Ads. Implemented the below function in my AppDelegate.m - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id

Cannot get the new AppLinks to work on iOS or Android

三世轮回 提交于 2019-11-29 23:50:40
Latest Update Below at Update #5 I'm trying to implement AppLinks for BOTH my iOS AND Android apps : http://applinks.org I've done the following: setup a custom url scheme for my app: inacho:// Setup in my App Delegate: - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation Add meta tags to my website at http://www.nachorater.com : <meta property="al:ios:app_store_id" content="581815579"/> <meta property="al:ios:app_name" content="iNacho" /> <meta property="al:ios:url" content="inacho://default" /> I've