branch.io

Branch.io: javascript detect whether mobile app is installed

江枫思渺然 提交于 2019-12-12 03:49:36
问题 I have a web page where I want a particular link on a page to open our native mobile app if the app is installed, and if not, do what it is currently doing (which submits a form). Note: I think this is different than a smart banner - I don't want the banner on this page. I just want the normal app flow if there is no mobile app. I have integrated branch-sdk in the web page and in my ios app. I have successfully set up a deep link from the web page to the iOS app (code not shown), but I am not

branch.io redirects to empty content in app, if app is not running in background

巧了我就是萌 提交于 2019-12-12 03:45:53
问题 Implemented the branch.io in the application. Working fine except if app is not running in background and branch.io link clicked. It will open the app and redirect to the screen where shared content to be shown but showing the empty screen or no content on screen.If app is running in background it works fine. Why so is it the limitation or i am missing something. Please guide, thanks in advance. Posting some code for clarity. - (BOOL)application:(UIApplication *)application

Does branch.io links work on facebook?

主宰稳场 提交于 2019-12-11 17:02:21
问题 Links created using branch.io when shared on Facebook; they do not open App or Default browser rather they are opened in facebook's webview. Is there any custom setting that we need to do; so link gets opened on App if available or in default browser when app does not exists. 回答1: The default behavior of any link Facebook is to open the link in the Facebook webview. Unfortunately, there is no way to change this behavior. Although, as a workaround, you can use Branch Deepviews to open your app

How to disable disambiguation dialog when opening Branch.io deeplink

不羁岁月 提交于 2019-12-11 14:47:32
问题 I have followed the steps to setup deep links using Branch.io in my app and I successfully received my first deep link through an SMS. My problem is that when I open the link I am not directly taken to the link destination (website or app), but to a disambiguation dialog, exactly like in this video : https://www.youtube.com/watch?v=lpaByLW_ctw&t=3m21s Apparently this can ben avoided by linking the Digital Asset Links file to a given URL. When I check this with the App Links Assistant, an

Branch.initSession not returning data in Ionic v1 on iOS

家住魔仙堡 提交于 2019-12-11 13:37:18
问题 I have installed and configured branch as documented. Everything works fine on Android, but I am not able to make it work on iOS. Here is what I followed. Ionic v1 project Created Branch account and configured everything. Configured keys, domains etc in config.xml file. Calling branchInit() on deviceready and resume event. function branchInit() { // Branch initialization if (Branch) { Branch.initSession(function(data) { alert("Branch Data", JSON.stringify(data)); if (data['+clicked_branch

How can I delete branch links?

牧云@^-^@ 提交于 2019-12-11 06:55:36
问题 I am using branch.io for generating short links for custom domain and alias, where alias is a sequential 6 character alphanumeric string. The final link looks something like this: domain.co/AAABBB For testing, custom domain integration, I used the custom domain in the branch.io test environment. Now while going live, I am using the same custom domain but some of the links are not getting generated because of the previously generated test links. As a result, I would like to delete old test

How can I access Branch Identity ID from identities from branch.io

一世执手 提交于 2019-12-11 06:15:57
问题 I am using https://github.com/BranchMetrics/branch-deep-linking-public-api to create a branch link for my users. I am able to create link successfully which also works fine. But my link is missing one major data which is Branch Identity ID . This is the Branch ID associated with individual identities on Branch I also understood that if I pass value in $identity_id tag while creating link then I will be able to see Branch Identity ID with my link. But I don't know how to access this id. Here

Branch.io redirects to app store only though app is already present in device

别等时光非礼了梦想. 提交于 2019-12-10 20:54:27
问题 In my one of the apps I have implemented branch.io. I have read each and everything and settled my account accordingly. Now what I want from branch.io 1) If app is present in device it should open on the click of marketing url. 2) If app is not present in device then it should redirect to app store application page.** What is not working 1> Though app is present but it is not opening my app. From same url schema I can open my app from safari browser "appname://" but not able to open from link

Branch deep links works very differently in different apps and phones

谁说我不能喝 提交于 2019-12-10 12:03:52
问题 I am very puzzled by a situation here. Basically, i have an branch link with 2 parameters. In my iOS, it is handled in the deeplinkhandler setup during the setup. However, the link works VERY differently. We installed on the TF on our phones. The app store does not have the version w branch yet. configuration below: from both of our chrome: works seamlessly, deeplinked works from my phone, iMessage: goes to appstore from his phone, iMessage: goes to app but deep linking does not work so.....

Using branch.io with Meteor

人盡茶涼 提交于 2019-12-08 21:21:24
We've been trying to integrate branch.io into our Meteor app, but so far, we are stuck on step 1. Trying to follow https://start.branch.io/#/integrate-sdk/steps , under "Cordova", we've been unable to install the Cordova plugin successfully. We've tried various commands, including: meteor add cordova:branch-cordova-sdk@2.0.2 meteor add cordova:io.branch.sdk@https://github.com/BranchMetrics/tarball/a30665d8b12896d1aad9ee0beb42c516e5fc1f6c meteor add cordova:io.branch.sdk@https://github.com/BranchMetrics.git#a30665d8b12896d1aad9ee0beb42c516e5fc1f6c as instructed here How to add cordova plug that