How get extra parameter from dynamic link using Firebase?

后端 未结 2 1156
遥遥无期
遥遥无期 2020-12-17 18:24

I have created dynamic link manually and i set some additional parameters on the link, like this: https://XXXXX.goo.gl/?link=https%3A%2F%2Fairbanq.send.com%2Fsendmoney&a

2条回答
  •  感情败类
    2020-12-17 18:49

    The official answer is that you need to escape/encode a URL string so that it can be safely placed inside a URL query. I wish Firebase dynamic links would just say that about the link.

    For Golang: url.QueryEscape(urlstring)

提交回复
热议问题