deep-linking

Redirect from facebook to ios app - deep link

谁说胖子不能爱 提交于 2019-12-01 08:42:22
问题 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> <

single page application deep linking with login page

限于喜欢 提交于 2019-12-01 08:27:09
My team is going to build a single-page-application for our future project. At the moment, I have a problem with designing the app with login page. There are 2 approaches: Create the login page as a separate page, the rest of the app is another single page. The app has only 1 page and the login page will be a view in the app which is switched back and forth using javascript. I don't know which approach I should take. I have read some discussions on the internet, it seems like it's more popular to create the login page as a separate page, the reason for this is we can use normal cookie-based

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

大城市里の小女人 提交于 2019-12-01 06:22:25
问题 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

iOS and Android Shared HTTP Deep Linking?

我的梦境 提交于 2019-12-01 03:32:31
I am trying to launch my native app through a URL (shared via email etc). It seems that Android only responds to HTTP deep link URLs (e.g., http://myapp.com/stuff ), and that iOS only responds to non-HTTP custom deep link URLs (e.g., myapp://stuff). Has anyone found a single solution to enable both OS's to open the same URL? Also, is it possible for iOS to use HTTP deep link URLs? Similar to how http://youtu.be will open the native iOS app. Facebook does this too. Thanks! :) This article can be usefull "URL schemes for iOS and Android": http://fokkezb.nl/2013/09/20/url-schemes-for-ios-and

Get request part after hash sign

匆匆过客 提交于 2019-12-01 03:07:33
My web-site has AJAX-powered search, that uses deep-linking. When user follows a link … http://example.com/articles#/?tags=Mac%20OS,review … tags "Mac OS" and "review" should already been selected in a search form and articles, related to "Mac OS" and "review" should be presented on the page. I have following scenario, that a need to fix User follows the link http://example.com/articles#/?tags=Mac%20OS During initial page rendering, all articles are fetched On the client side, hash-part is parsed and only "Mac OS"-related articles are requested via AJAX. Client receives "Mac OS"-articles and

Block mobile website to open my app android deeplink - Google Chrome

风流意气都作罢 提交于 2019-12-01 02:47:13
问题 I have supported deeplinks in my app <activity android:name=".DeepLinkActivity" android:noHistory="true"></activity> <activity-alias android:name="com.example.Launcher" android:targetActivity=".DeepLinkActivity"> <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:scheme="https" /> <data android:scheme="http" />

Deep linking to Facebook Messenger

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-01 02:31:41
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? Parker As WizKid (FB Employee) said here : ...there is no documented way to interact with ... [Messenger] so anything you do may break

Android Deeplink pathPrefix Attribute Is Being Ignored

↘锁芯ラ 提交于 2019-12-01 02:27:13
问题 I have a deeplink defined for my Android app in the manifest file: <activity android:name="com.example.DeeplinkActivity" android:screenOrientation="portrait" android:theme="@style/MyBaseTheme.NoActionBar"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.DEFAULT" /> <!-- Accepts URIs that begin with "example://shelf” --> <!-- Currently handles Ads deeplink

Why this deep link (applink), generated by facebook does not work?

为君一笑 提交于 2019-12-01 01:18:49
I want to make a button on my website, that will allow user to open native facebook app (if it is installed), or open facebook website otherwise. As i understood, i have to create separate html page for that. I tried facebook hosted app links to get working App Links example. Following code was generated by facebook, it can be accessed by this url . I have tried to open this link with iOS (Safari, Chrome), Android (default browser, Chrome). Despite i have facebook app installed on both devices, i am redirected to facebook website. Why does it happen? How i can make it open native apps? <html>

iPhone iOS Amazon Scheme / URI Not Working Anymore amzn:// version 4.3.1 Deep Linking

我们两清 提交于 2019-12-01 00:31:53
We were using scheme something like amzn://content/item?id=<some valid id> And was working fine, but now as of Amazon App 4.3.1, this is no longer working, the scheme is no longer provided. So trying the scheme something like com.amazon.mobile.shopping://content/item?id=<some valid id> we get the message in the Amazon App Amazon Mobile is currently unavailable for content. Any hints on this? Try this scheme on iOS device. com.amazon.mobile.shopping://www.amazon.com/products/B00KWFCV32/ This url scheme opens the in-app product detail page directly com.amazon.mobile.shopping.web://www.amazon.com