deep-linking

applinks in iOS 9 not working

故事扮演 提交于 2019-12-01 23:09:40
问题 I don't get applinks: in iOS not working, whenever I open a link like https://www.example.com/something on my iOS 9 device, it gets opened in Safari. I'm running the app via debug provisioning profile, on my server there is a file called apple-app-site-association . There are two different formats I found: { "applinks": { "apps": [], "details": { "AB1CDEFGHI.com.mydomain.myapp": { "paths": ["*"] } } } } as well as { "applinks": { "apps": [], "details": [ { "appID": "AB1CDEFGHI.com.mydomain

Deep link with variable query on branch.io

社会主义新天地 提交于 2019-12-01 23:08:23
We are considering using branch.io for the social sharing aspect of our app. I'm also wondering whether I can use it for the password reset flow. This is to get around the fact that email clients like gmail strip the custom application uri like: frock//:foo.com/reset-pw out of any links: https://github.com/EddyVerbruggen/Custom-URL-scheme/issues/123 . So I'm thinking about using branch.io to send out a link to the password recover screen and am wondering if I have to create a branch.io link for each user, or whether I can create one link call it /reset-pw and then pass it a variable query

applinks in iOS 9 not working

房东的猫 提交于 2019-12-01 21:09:49
I don't get applinks: in iOS not working, whenever I open a link like https://www.example.com/something on my iOS 9 device, it gets opened in Safari. I'm running the app via debug provisioning profile, on my server there is a file called apple-app-site-association . There are two different formats I found: { "applinks": { "apps": [], "details": { "AB1CDEFGHI.com.mydomain.myapp": { "paths": ["*"] } } } } as well as { "applinks": { "apps": [], "details": [ { "appID": "AB1CDEFGHI.com.mydomain.myapp", "paths": [ "*" ] } ] } } so that's the first thing I'm not sure which one to use. The second is

How to use PathPattern in order to create DeepLink Apps Android?

北战南征 提交于 2019-12-01 18:52:43
I have read documentation about create an deeplink and use app linking service in android studio 3.0. its pretty simple and easy to understand, but I have little bit problem when my URL has no prefix path. example : https://example.com/ /amp there is no prefix, its directly url pattern. when i use regex ^[a-z0-9]+(?:-[a-z0-9]+)*$ it doesnt works, error shown as The URL doesnt map to any activity when i use only star, like : https://example.com/ */amp its show seem error. i got stuck in this step, I've check much tutorial about deeplink, and there always use pathPrefix instead of pathPattern.

How can i get canonical url from facebook graph api in android?

寵の児 提交于 2019-12-01 14:07:43
Am trying to implement deep link on Facebook sharing in my android applcation. That deep link is only for mobile and not for webpage. So according to the facebook documentation Link1 Link2 am going through Link2. The following should be called to get id of canonical url. This canonical url will be set as a link on Facebook sharing. To get canonical id curl https://graph.facebook.com/app/app_link_hosts \ -F access_token="APP_ACCESS_TOKEN" \ -F name="Android App Link Object Example" \ -F android=' [ { "url" : "sharesample://story/1234", "package" : "com.facebook.samples.sharesample", "app_name"

Redirect from facebook to ios app - deep link

喜夏-厌秋 提交于 2019-12-01 11:01:33
I am not able to redirect to my iOS app from facebook post. When I click on that post its gets open as webpage (somehow dosent identify tags for iOS & dosen't redirect to app). Not sure whether its a ios app OR html content or some other issue. Myapppp.plist content: <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleTypeRole</key> <string>Editor</string> <key>CFBundleURLName</key> <string>com.myapp.xyzxyz</string> <key>CFBundleURLSchemes</key> <array> <string>myapp</string> </array> </dict> <dict> <key>CFBundleURLSchemes</key> <array> <string>fb123XXX123</string> </array> </dict> </array

Firebase Dynamic Links not survive installation

江枫思渺然 提交于 2019-12-01 10:39:26
I have went through the Firebase Tutorial, I have implemented Firebase SDK + Dynamic links + Managed my app to support Associated Domains and everything works fine except that the dynamic link doesn't survive the installation . I have created a dynamic link through Firebase console, When app already installed, everything works fine. The dynamic link launch my app with the relevant content When my app isn't installed, the dynamic link open the AppStore as expected and than I'm installing the app through Xcode, but nothing happens I don't receive any content on first launch. What I did: Make

Unable to query parameters stored in a Firebase dynamic/deep-link

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-01 09:47:50
I'm creating a Firebase dynamic/deep link manually like this: Uri BASE_URI = Uri.parse("http://example.com/"); String packageName = getBaseContext().getPackageName(); Uri APP_URI = BASE_URI.buildUpon().path(requestID.getText().toString().trim()+"%3DrequestID="+requestID.getText().toString().trim()+"%3Dextra1="+extra1.getText().toString().trim()+"%3Dextra2="+extra2.getText().toString().trim()).build(); String encodedUri = URLEncoder.encode(APP_URI.toString(), "UTF-8"); Uri deepLink = Uri.parse("https://appcode.app.goo.gl/?link="+encodedUri+"&apn="+packageName+"&amv="+16+"&ad="+0); and then I'm

Links on web site that can login into app with a token or fall back to web site

落爺英雄遲暮 提交于 2019-12-01 09:27:04
There is a request to add a link to one of our websites that can open our mobile app on iOS or Android, and login to the app based by passing an authentication token in. If the apps do not exist on either platform I need it to fall back to the associated website. From what I understand about universal links or deep linking, their intended purpose is to take you to a specific page within an app, not pass along parameters. Custom URL schemes seem to fit better, but also aren't supported the same way and falling back to the web is problematic. If anyone has ever setup something like this and has

Unable to query parameters stored in a Firebase dynamic/deep-link

五迷三道 提交于 2019-12-01 09:19:57
问题 I'm creating a Firebase dynamic/deep link manually like this: Uri BASE_URI = Uri.parse("http://example.com/"); String packageName = getBaseContext().getPackageName(); Uri APP_URI = BASE_URI.buildUpon().path(requestID.getText().toString().trim()+"%3DrequestID="+requestID.getText().toString().trim()+"%3Dextra1="+extra1.getText().toString().trim()+"%3Dextra2="+extra2.getText().toString().trim()).build(); String encodedUri = URLEncoder.encode(APP_URI.toString(), "UTF-8"); Uri deepLink = Uri.parse