Long link is not parsable - Firebase Dynamic Links on iOS

Solution 1:

I found out that my uriPrefix had an / at the end which caused a problem on iOS (using Flutter)

Solution 2:

I faced same situation a while ago. It was the url parameter causing error.

In your first line,

let components = DynamicLinkComponents(link: url, domain: "nau6x.app.goo.gl")

you need to make sure that the "url" must start with "http://" or "https://". Hope it helps.