当我使用Firebase动态链接时,我在android浏览器“找不到动态链接”中遇到错误。我在android中没有应用程序,因此如果链接打开,它应该重定向到android网络视图。因此,它重定向到chrome,但显示了上述错误。如何解决此错误?
this.http.post<any>('https://firebasedynamiclinks.googleapis.com/v1/shortLinks?key=*********',
{
"longDynamicLink": "https://example.com/invit?link=https://example.com/invit/"+id+"/&ibi=-App-Run-XYZ&isi=123456&efr=1&afl=https://example.com/friends/"+id+"&ofl=https://example.com/friends/"+id
}
答案 0 :(得分:0)
当我更改“ your_deep_link” URL时,它起作用了。
例如,如果要创建到资源https://example.com/my-resource的动态链接(网页,通用链接或应用程序链接),则不能使用https://example.com/作为动态链接URL前缀,因为这样做会导致https://example.com/my-resource被视为动态链接。相反,您必须使用具有不同域或路径前缀的URL前缀。
错
https://example.com/?link=https://example.com/my-resource
https://example.com/?link=https://example.com/resources/my-resource
正确
https://link.example.com/?link=https://example.com/my-resource
https://example.com/links/?link=https://example.com/my-resource
https://ex.amp.le/?link=https://example.com/my-resource