0

I have configured AASA file to support path such as https://domain/forgot-password?token=asadsad3ddsd. It is not opening in browser nor app.

do we need to configure something in flutter app delegate to support query parameters.

I have tried different iterations to support the above url. iteration 1 : components : [ { "/" : "/forgot-password" , "?" : { "token" : "?} ] iteration 2 : components : [ { "/" : "" } ] iteration 3 : components : [ { "/" : "/forgot-password" , "?" : { "token" : "?????..." } ] my token is of length 36. so I have kept 36 question marks.

can u help me with how to support a universal link with query parameters incase of iOS. what are configuration need to be done on flutter, apple side to support the above link.

2
  • When you open the link https://domain/forgot-password?token=asadsad3ddsd in the browser, will your app be opened? Commented May 22 at 8:14
  • You should show your ASAA file and the relevant part of your info.plist (anonymise the domain and bundle id). There are facilities for testing universal links in the iOS developer settings
    – Paulw11
    Commented May 22 at 8:14

0