ios-universal-links

iOS Universal Link not working on HTTP

微笑、不失礼 提交于 2020-08-24 08:07:11
问题 I'm trying to open an App from a Web Page link, it works like a charm on an HTTPS domain, but when I try on a HTTP (unsecure) domain the universal link isn't working. Anyone know if I'm missing a configuration?. Thank you!. 回答1: If I am understanding correctly, you have an app for which you are enabling Universal Links. When the associated-domain that you are using for Universal Linking is secured by SSL, everything is working properly. When you attempt to use a link domain that is not

How to NOT handle some Universal Links programmatically?

邮差的信 提交于 2020-06-28 04:06:34
问题 My iOS application handles universal links to redirect safari users to my app. So far everything is working great, if a user tap a link to my web site from Google my app is opening instead of my web site like this: from safari https://my-web-site.com -> my-app But my app doesn't implement certains features that my web site does, so I would like to programmatically reject some URLs and let my users on safari instead of redirecting him in my app, like this: from safari https://my-web-site.com -

Configure apple-app-site-association file and upload on server

时光怂恿深爱的人放手 提交于 2020-06-22 08:08:40
问题 I am new on iOS development. I am implementing Universal Links in iOS App with ASP.net application. I have define my associate domain in capabilities under Associated Domains: applinks:www.abcd.com And also configure in App Ids on Apple Developer Account. I think app side work is all set . But I think problem with apple-app-site-association file. I have written json in a simple text file like below { "applinks": { "apps": [], "details": [ { "appID": "8T8932TY.com.AppName”, "paths": ["*"] } ]

Configure apple-app-site-association file and upload on server

放肆的年华 提交于 2020-06-22 08:08:27
问题 I am new on iOS development. I am implementing Universal Links in iOS App with ASP.net application. I have define my associate domain in capabilities under Associated Domains: applinks:www.abcd.com And also configure in App Ids on Apple Developer Account. I think app side work is all set . But I think problem with apple-app-site-association file. I have written json in a simple text file like below { "applinks": { "apps": [], "details": [ { "appID": "8T8932TY.com.AppName”, "paths": ["*"] } ]

Universal link not working if app is not installed on an iOS Device

自闭症网瘾萝莉.ら 提交于 2020-05-29 05:57:04
问题 I've implemented universal links in my application as well as server side. Everything works fine when the app is installed. If the app is not installed on the device and I click on the universal link from say notes or mail, I'm redirected to the app store from where I can download the app. On download completion however, if I click 'OPEN' in the app store page, the app delegate method below is not called: - (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *

Config apple-app-site-association file with WordPress

谁都会走 提交于 2020-05-14 07:24:05
问题 I’m trying to implement iOS Universal Links, I need to serve an apple-app-association file at the root of my WordPress. How could I serve my apple-app-association file with Content-type: "application/pkcs7-mime" in WordPress? I tried to directly upload it, but of course it didn't work because I need to modify the Content-type of the apple-app-association to: Content-type: "application/pkcs7-mime" 回答1: Since the apple-app-site-association file is not a WordPress file, you have to configure the

Config apple-app-site-association file with WordPress

£可爱£侵袭症+ 提交于 2020-05-14 07:24:02
问题 I’m trying to implement iOS Universal Links, I need to serve an apple-app-association file at the root of my WordPress. How could I serve my apple-app-association file with Content-type: "application/pkcs7-mime" in WordPress? I tried to directly upload it, but of course it didn't work because I need to modify the Content-type of the apple-app-association to: Content-type: "application/pkcs7-mime" 回答1: Since the apple-app-site-association file is not a WordPress file, you have to configure the

iOS, Universal links, Swift. continueUserActivity not calling

大城市里の小女人 提交于 2020-04-13 11:29:36
问题 I working on Universal links implementation for our iOS app. Here is my small piece of AppDelegate: private func application(_ application: UIApplication, openURL url: URL, sourceApplication: String?, annotation: AnyObject) -> Bool { DeepLinkHelpers.handleUniversalLink(url.absoluteString) return true } private func application(application: UIApplication, continueUserActivity userActivity: NSUserActivity, restorationHandler: ([AnyObject]?) -> Void) -> Bool { DeepLinkHelpers.handleUniversalLink

When is the apple-app-site-association file being fetched?

眉间皱痕 提交于 2020-04-06 05:07:16
问题 I have an application on store right now. It did not worked with universal linking. Then I update application and add Apple-app-site-association file in to my website. Re-install the app is likely the solution, but my app is already distributed in App Store, it is unlikely to ask user to delete it and installed again. Is there any opputunity to let the iOS or app to fetch my updated apple-app-site-association file. 回答1: The short answer is: Only when the app is installed or updated . The good

When is the apple-app-site-association file being fetched?

可紊 提交于 2020-04-06 05:05:13
问题 I have an application on store right now. It did not worked with universal linking. Then I update application and add Apple-app-site-association file in to my website. Re-install the app is likely the solution, but my app is already distributed in App Store, it is unlikely to ask user to delete it and installed again. Is there any opputunity to let the iOS or app to fetch my updated apple-app-site-association file. 回答1: The short answer is: Only when the app is installed or updated . The good