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\" : @\"unauth
I was able to get the dynamic link url value. There was an additional check in my code as below -
if (launchOptions != nil)
{
[FIROptions defaultOptions].deepLinkURLScheme = URL_SCHEME;
}
Because of this check, the URL scheme was never getting initialised and hence was erroring out.
The code that i have posted above should return the right dynamic link url.
Thanks.