I have a problem receiving Firebase Dynamic Links with the new custom URLs. I created one "abc0.page.link", I set up everything to create it in code from the app.
But when receiving, I get this message in LOG:
[Firebase/Analytics][I-ACS023000] Deep Link Web URL query is empty
Nothing happens, and handled is false.
- (BOOL)application:(UIApplication *)application
continueUserActivity:(NSUserActivity *)userActivity
restorationHandler:
#if defined(__IPHONE_12_0) && (__IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_12_0)
(nonnull void (^)(NSArray<id<UIUserActivityRestoring>> *_Nullable))restorationHandler {
#else
(nonnull void (^)(NSArray *_Nullable))restorationHandler {
#endif // __IPHONE_12_0
//(void (^)(NSArray *))restorationHandler {
NSLog(@"continueUserActivity called, withUser: %@, useractivity: %@, webpageurl: %@", self.user.uid, userActivity, userActivity.webpageURL);
calledFromURL = YES;
BOOL handled = [[FIRDynamicLinks dynamicLinks] handleUniversalLink:userActivity.webpageURL
completion:^(FIRDynamicLink * _Nullable dynamicLink,
NSError * _Nullable error) {
NSLog(@"continueUserActivity called");
if (error) {
NSLog(@"dynamic link error: %@", error.localizedDescription);
animated:YES completion:nil];
}
else {
}
}];
return handled;
}
What is the problem here? Thank you in advance!