deep-linking

Deep linking to Facebook Messenger

此生再无相见时 提交于 2019-11-30 22:04:45
问题 From a lot of searching, I found that using fb-messenger://user-thread/ID can be used to deep link to Messenger and open the existing thread with the passed in FB ID or start a new thread if not existent. It pops over to Messenger and opens a thread, but the thread is with Facebook User and doesn't actually send. See image below. Clicking Facebook User in the header goes to a detail view with the correct user's image and name. How do I make this work correctly? 回答1: As WizKid (FB Employee)

Android Deep linking omit certain url

纵饮孤独 提交于 2019-11-30 19:42:37
I have implemented deep linking to my app successfully but I am stuck with a problem. <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:host="*.example.com" android:scheme="https"/> </intent-filter> This intent filter handles all the links but I don't want to catch a certain url i.e. https://www.example.com/hello/redirect/ What I tried so far: I tried entering all the URLs that I want to catch manually <data android

Android share deep link url using whatsapp and open my app when click deep link

蹲街弑〆低调 提交于 2019-11-30 15:43:06
问题 I am sharing some data using whatsapp, and I want to open a specific activity in my app when user press deep link from whatsapp I have the following schema myapp://openapp?type=banner&id=10 whatsapp share the link as a normal text not as url and also I can't open my app when user press it can anyone help please ? EDIT this is my sharing method public static void openWhatsApp(Context mContext) { PackageManager pm = mContext.getPackageManager(); try { Intent whatsAppIntent = new Intent(Intent

Deep link shares to Google+, but link does nothing

时光总嘲笑我的痴心妄想 提交于 2019-11-30 15:08:13
问题 I'm trying to use deep-linking from Google+ into an Android app, following http://developers.google.com/+/mobile/android/share/deep-link. I can share to Google+. The link in the post is "clickable" (it highlights during touch), but does nothing on release. Also, the post contains a suspicious "undefined" line of text. sample http://raw.github.com/concreterose/TestDeepLink/master/README_ASSETS/sample_share.png I have enabled deep linking in Google Developers Console project credentials. I'm

Android share deep link url using whatsapp and open my app when click deep link

穿精又带淫゛_ 提交于 2019-11-30 14:21:26
I am sharing some data using whatsapp, and I want to open a specific activity in my app when user press deep link from whatsapp I have the following schema myapp://openapp?type=banner&id=10 whatsapp share the link as a normal text not as url and also I can't open my app when user press it can anyone help please ? EDIT this is my sharing method public static void openWhatsApp(Context mContext) { PackageManager pm = mContext.getPackageManager(); try { Intent whatsAppIntent = new Intent(Intent.ACTION_SEND); whatsAppIntent.setType("text/plain"); String text = "myapp://openapp?type=banner&id=10";

Deep link shares to Google+, but link does nothing

血红的双手。 提交于 2019-11-30 13:27:25
I'm trying to use deep-linking from Google+ into an Android app, following http://developers.google.com/+/mobile/android/share/deep-link . I can share to Google+. The link in the post is "clickable" (it highlights during touch), but does nothing on release. Also, the post contains a suspicious "undefined" line of text. sample http://raw.github.com/concreterose/TestDeepLink/master/README_ASSETS/sample_share.png I have enabled deep linking in Google Developers Console project credentials. I'm using a signed-in PlusClient created with Scopes.PLUS_LOGIN, posting via: Intent shareIntent = new

Android Deep linking omit certain url

廉价感情. 提交于 2019-11-30 03:48:50
问题 I have implemented deep linking to my app successfully but I am stuck with a problem. <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:host="*.example.com" android:scheme="https"/> </intent-filter> This intent filter handles all the links but I don't want to catch a certain url i.e. https://www.example.com/hello

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 open ios app using url?

社会主义新天地 提交于 2019-11-30 01:42:39
I want to open my ios app using URL schemes. I am able to open app using this. But I want if app is not installed then app store should be opened where user can download app. Is this possible? How can I do that? EDIT Explaining question step wise: I have a mail in my inbox with a url. I click on URL then i. If app is installed in phone, app will launch. ii. Otherwise app store will be opened to download app. Thank I handled it via my server side code: if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) { location.replace("com.myapp://"); setTimeout(function() {

What is the difference between App Indexing and Deep Linking?

久未见 提交于 2019-11-29 19:03:55
问题 I have read about App Indexin g and Deep Linking for android apps. As far as I can find both are the same and deep linking is much easier since it just requires to add an intent filter in the Manifest.xml file. So why do I need to use app indexing? What makes it different from deep linking? A different way of coding(android) is required to implement Fire Base App Indexing Here is a link that guides about Fire Base App Indexing: https://firebase.google.com/docs/app-indexing/ Is that necessary?