firebase-dynamic-links

Unable to add Firebase Dynamic Links to a project using a custom domain

对着背影说爱祢 提交于 2020-02-26 09:06:28
问题 I've created Firebase Dynamic Links in other projects before using the page.link URL prefix (the only option at the time). However that no longer appears to be an option when enabling Dynamic Links for a new project today. It looks like the docs for custom domains were updated today. Unfortunately, while they provide some helpful examples, they don't explain how to resolve my issue in a way that I can understand. So this message seems to indicate that I need to "Put links under a subpath". It

Firebase dynamic link invalid and blocked

99封情书 提交于 2020-02-25 07:05:13
问题 I’ve implemented firebase email authentication in iOS. I’ve tested the functionality on 4 different iPhones, all running iOS 13.3.1, and it works in half of them and not in the other. For the half that don’t work, I receive an error message stating “Invalid Dynamic Link - Blocked”. I’m performing the same process on all iPhones and am connected to the same WiFi. I’m trying to understand what would cause this to happen? It’s clearly something on the phone that is preventing it from segueing

Add parameter to Firebase Dynamic Links

坚强是说给别人听的谎言 提交于 2020-02-09 13:09:31
问题 I want to let the user share a product from my app by clicking a button and sending other potential users links like www.myapp.com/offer/123 there, "123" must be generated at the moment the user click the button in order to, later in time, hanle it with FirebaseDynamicLinks.getInstance() .getDynamicLink(getIntent()) .addOnSuccessListener(this, new OnSuccessListener<PendingDynamicLinkData>() { @Override public void onSuccess(PendingDynamicLinkData pendingDynamicLinkData) { Uri deepLink; if

Add parameter to Firebase Dynamic Links

风格不统一 提交于 2020-02-09 13:06:49
问题 I want to let the user share a product from my app by clicking a button and sending other potential users links like www.myapp.com/offer/123 there, "123" must be generated at the moment the user click the button in order to, later in time, hanle it with FirebaseDynamicLinks.getInstance() .getDynamicLink(getIntent()) .addOnSuccessListener(this, new OnSuccessListener<PendingDynamicLinkData>() { @Override public void onSuccess(PendingDynamicLinkData pendingDynamicLinkData) { Uri deepLink; if

How to show my app in chooser apps when someone clicks firebase dynamic link?

折月煮酒 提交于 2020-02-07 03:38:25
问题 How should be my android manifest file if I want to show my app in the chooser apps if someone clicks the dynamic link? The URL prefix is like - https://testapp.page.link. At that stage if someone clicks the link then it first opens the browser then it redirects to my app. But I want to show my app in the chooser app list. At this time my manifest file is like follows- <activity android:name=".extraActivities.DynamicLinkActivity"> <intent-filter> <action android:name="android.intent.action

I am getting Invalid Dynamic Link when clicking to the Sign-in link received through email

ε祈祈猫儿з 提交于 2020-01-25 08:24:24
问题 I am getting Invalid Dynamic Link when clicking to the Sign-in link received through email. actionCodeSettings.url = URL(string: "https://caxxxxxxxxxxxant.page.link") //my domain prefix actionCodeSettings.handleCodeInApp = true actionCodeSettings.setIOSBundleID(Bundle.main.bundleIdentifier! But when I provide the url as : actionCodeSettings.url = URL(string: "https://caxxxxxxxxxant.page.link/open") with custom url scheme i gave while making Dynamic Link under the domain, it's now navigating

Test Firebase Dynamic Links for Unpublished App

↘锁芯ラ 提交于 2020-01-22 12:32:05
问题 I have a dev version of my app that is not published in the Play Store. I would like to test dynamic links with it, but whenever I click a dynamic link, it opens the play store, and I get a not found error (because there is no corresponding package in the Play Store). What's the recommended way of testing this? It would also apply to staging environments, etc... that are not published. 回答1: I was able to test it like this: I published a closed alpha version of an app - open only to my email

Test Firebase Dynamic Links for Unpublished App

混江龙づ霸主 提交于 2020-01-22 12:31:28
问题 I have a dev version of my app that is not published in the Play Store. I would like to test dynamic links with it, but whenever I click a dynamic link, it opens the play store, and I get a not found error (because there is no corresponding package in the Play Store). What's the recommended way of testing this? It would also apply to staging environments, etc... that are not published. 回答1: I was able to test it like this: I published a closed alpha version of an app - open only to my email

Firebase Dynamic link API returning unexpected result

北城余情 提交于 2020-01-13 13:06:46
问题 I'm using Firebase API to generate short link: https://firebasedynamiclinks.googleapis.com/v1/shortLinks?key=XYZ It work most of time and generated expected result like https:// abc123.app.goo.gl/WXYZ but randomly it sometime generated https:// goo.gl/xyz sort of link. And finally when this executed by client it does not contain expected parsed result. I have no idea why this is happening. Any one suggestion what's wrong going here. 来源: https://stackoverflow.com/questions/42484750/firebase

Firebase Dynamic link API returning unexpected result

左心房为你撑大大i 提交于 2020-01-13 13:06:23
问题 I'm using Firebase API to generate short link: https://firebasedynamiclinks.googleapis.com/v1/shortLinks?key=XYZ It work most of time and generated expected result like https:// abc123.app.goo.gl/WXYZ but randomly it sometime generated https:// goo.gl/xyz sort of link. And finally when this executed by client it does not contain expected parsed result. I have no idea why this is happening. Any one suggestion what's wrong going here. 来源: https://stackoverflow.com/questions/42484750/firebase