My requirement is to handle universal links on the iOS application. But the dynamic link.url seems to be returning an error as below -
"@"error" : @"unauthorized user: username=social-app-invite methodName=/FirebaseLookupService.LookupAppsSummary protocol=loas securityLevel=integritY"
When i click on a dynamic link (https://****.app.goo.gl/****) from the notes app, my ios app will be directed to the following callback -> In this function i have the following code -
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void(^)(NSArray * __nullable restorableObjects))restorationHandler
{
NSURL *incomingURL = userActivity.webpageURL;
if(incomingURL){
BOOL handled = [[FIRDynamicLinks dynamicLinks]
handleUniversalLink:incomingURL
completion:^(FIRDynamicLink * _Nullable dynamicLink,
NSError * _Nullable error) {
if (dynamicLink.url){`
**HANDLE THE DYNAMIC LINK HERE**
}else{
**CODE IS RETURNING ERROR** NSLog(@"error %@",error);
}
}];
return handled;
}else{
return false;
}
}
I have followed the firebase documentation correctly. Please suggest what is going wrong here?