openAPI icon indicating copy to clipboard operation
openAPI copied to clipboard

Will deep link offer a universal link for web app?

Open JTL1992 opened this issue 9 years ago • 5 comments

we are working with a web app about service of taxi, can you offer a deep link for web app?

JTL1992 avatar Jan 09 '17 14:01 JTL1992

We've been unable to get the Android deep link to work on our web app (running on device). It always opens a browser and asks for a signup. The iOS deep link works just fine though.

edkim avatar Jul 25 '17 18:07 edkim

@edkim I think that there is a solution for it, as the deeplink for IOS, use schema: car2go, host vehicle in intent-filter `

            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data
                android:scheme="car2go"
                android:host="vehicle"
                android:path="/"/>

`

JTL1992 avatar Jul 25 '17 18:07 JTL1992

@JTL1992 The code you posted looks like it's for a native android app. I have an HTML5 web application that I want to add Car2Go deep links to. The deep link works great using the instructions for iOS (as long as the Car2Go app is installed), but no luck with getting it to work on Android.

edkim avatar Jul 26 '17 05:07 edkim

I know that there have been some changes in chrome >=25 maybe this helps https://developer.chrome.com/multidevice/android/intents

rompic avatar Aug 03 '17 08:08 rompic

Apple has officially deprecated the iOS custom URI scheme so car2go: no longer works. Please add an apple-app-association file to your regular https:// endpoint so we can all be on the same page here. https://developer.apple.com/library/content/documentation/General/Conceptual/AppSearch/UniversalLinks.html

ericjames avatar Nov 06 '17 21:11 ericjames