I have configured AASA file to support path such as https://domain/forgot-password?token=asadsad3ddsd. It is not opening in browser nor app. 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.
do we need to configure something in flutter app delegate to support query parameters.