Firebase dynamic linking - Continueuseractivity not returning dynamic link url

前端 未结 3 1134
北海茫月
北海茫月 2021-01-22 09:29

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         


        
3条回答
  •  难免孤独
    2021-01-22 10:03

    I also met this issue. handleUniversalLink() returned always false. In my case my link parameter contained not just a URL but also parameters. So the final dynamic link got two question marks in it.

    https://app-id.app.goo.gl/?link=https://www.domain.com/resource?someParam=someValue&ibi=com.domain.appname

    If I escape the inner URL (link parameter) with percent escapes, it works fine.

    https://app-id.app.goo.gl/?link=https%3A%2F%2Fwww.domain.com%2Fresource%3FsomeParam%3DsomeValue&ibi=com.domain.appname

提交回复
热议问题