ios-universal-links

Apple association file fetched in development but not in TestFlight and App Store

和自甴很熟 提交于 2020-02-03 08:06:25
问题 Universal links work perfectly fine in development, but once I sign the applications and deploy them to TestFlight and App Store, it looks like the apple-app-site-association is not fetched and therefore the app isn't registered for oppening the universal links. 1. /.well-known/apple-app-site-association file: { "applinks": { "apps": [], "details": [{ "appID": "myteamid.com.mycompany.appName", "paths": ["*"] }] } } The server part looks OK, since it is successfuly fetched whenever I run the

continueUserActivity not called

不问归期 提交于 2020-01-23 06:09:09
问题 I have an app that supports Universal Links. Everything looks properly set up. I have an apple-app-site-association file on the server, appropriate link added to Associated Domains and also I added application:continueUserActivity:restorationHandler to the AppDelegate. Finally, I added a link to my Notes app and when I click the link and hold it I'm able to see button Open in "MyApp". When I tap the button iOS opens the app but application:continueUserActivity:restorationHandler is never

continueUserActivity not called

人盡茶涼 提交于 2020-01-23 06:07:05
问题 I have an app that supports Universal Links. Everything looks properly set up. I have an apple-app-site-association file on the server, appropriate link added to Associated Domains and also I added application:continueUserActivity:restorationHandler to the AppDelegate. Finally, I added a link to my Notes app and when I click the link and hold it I'm able to see button Open in "MyApp". When I tap the button iOS opens the app but application:continueUserActivity:restorationHandler is never

iOS Universal Links and URL Shorteners

自作多情 提交于 2020-01-20 06:03:04
问题 We have recently begin to encounter issues with our Universal Link implementation when the UL is accessed via a shortened goo.gl URL. This Works: https://site.domain.com/Deep/Link This does not: https://goo .gl/fake -> 302 Redirect -> https://site.domain.com/Deep/Link Is anyone else experiencing the same thing? Note: I had to break up the shortened Google URL to keep StackOverflow's editor from yelling at me. 回答1: Universal Links are triggered by the URL that is being accessed, and are

Compose a Message with predefined link attached from iOS app into Facebook Messenger

六眼飞鱼酱① 提交于 2020-01-14 05:52:07
问题 I am using fb-messenger://compose to open Facebook Messenger Composer, but I need to attach a predefined link into the composer. I don't want to use action sheet for that. I also saw this answer - Facebook Messenger Compose Predefined Message Which may seem similar but is a wrong answer because it is Facebook SDK and not Facebook Messenger. I looked at Facebook Messenger SDK for iOS - https://developers.facebook.com/docs/messenger/ios under Basic Integration \ Sharing Content and all I could

Xamarin iOS Universal Links support for Twitter Auth

帅比萌擦擦* 提交于 2020-01-11 12:59:34
问题 So, now twitter from 25 sep supports universal linking, it means that when UIWebView hits https://twitter.com/oauth/authorize?oauth_token link, it tries to open a twitter app, and if it is there, then it redirects me to auth page with auth error, so I wonder, how can I disable it from code, without uninstalling twitter app, or how I can enable universal linking auth in my xamarin ios app? Is it possible at all? (similar question but for native: Disable Twitter Universal Deep Links) 回答1:

Universal Links iOS

ⅰ亾dé卋堺 提交于 2020-01-06 21:03:48
问题 I am having some trouble in getting Universal links on my app working. Here are the things that i have already done. -- Created my apple-app-site-association file. Here is my file { "applinks": { "apps": [], "details": [{ "appID": "XXXXXXXXXX.com.companyName.app", "paths": ["/view/*", "/class/*"] }] } } I have not signed my file and i set my project deployment target to iOS 9.2 (so that i don't have to sign this file). -- Added the associated domain in my project capabilities applinks

Universal links doesn't work in iOS 10.2

淺唱寂寞╮ 提交于 2020-01-06 18:36:14
问题 I have serve apple-app-site-association in my HTTPS root (kumpul.co.id/apple-app-site-association) and the result is passed from https://branch.io/resources/aasa-validator/#resultsbox I have configured it in my entitlements: applinks:kumpul.co.id and i have put this function in my Appdelegate.swift: func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Void) -> Bool { NSLog("Check Universal Link") // 1 guard

Add multiple stops to Google navigation using Universal URL schemes

让人想犯罪 __ 提交于 2020-01-03 03:33:11
问题 Is there a way to launch Google Maps app on iOS with multiple stops using Google Maps URL Scheme? 回答1: Well we need to append to: parameter for each location. The url scheme will be as follows: from your current location comgooglemaps://?daddr=Lat,Lon+to:Lat,Lon+to:Lat,Lon+to:... if you have source location comgooglemaps://?saddr=Lat,Lon&daddr=Lat,Lon+to:Lat,Lon+to:Lat,Lon+to:... 来源: https://stackoverflow.com/questions/43363826/add-multiple-stops-to-google-navigation-using-universal-url

application:openURL:options: not called after opening universal link

蹲街弑〆低调 提交于 2020-01-01 11:41:41
问题 I've set up universal links with the Branch SDK. The links are opening the app correctly, and application:continueUserActivity:restorationHandler: is called, but not `application:openURL:options:' func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool { Branch.getInstance().application(app, open: url, options: options) return true } The deprecated application:openURL:sourceApplications:annotation is also not called.