如何为Google Firebase动态链接创建白名单URL模式?

b5buobof  于 2022-11-17  发布在  Go
关注(0)|答案(1)|浏览(215)

My Dynamic link giving the error as Invalid Dynamic Link - Blocked
We could not match param 'https://www.toppscholars.com?meetingId=546546&pwd=98456' with whitelisted URL patterns in this Google project.
I tried to create whitelist which goes to playstore:
^https://play.google.com/.*id=com.appname$
Unable to use for below URL, need redirection on below url to read the values. https://www.toppscholars.com?meetingId=546546&pwd=9845
I'm expecting the dynamic link to open my app and read the parameters. If app not present it will go to app store / playstore.
Expecting the link to work across all the devices and platforms without error.

8zzbczxx

8zzbczxx1#

Issue resolved by below example.

Link: https://www.example.com/post?postId=hy48ndmFLMdxydT7mGPq
Allowlist URL Pattern: ^https{0,1}:\/\/www\.example\.com\/post([\/#\?].*){0,1}$

Similarly for

Link: https://www.toppscholars.com?meetingId=546546&pwd=9845
Allowlist URL Pattern: ^https{0,1}:\/\/www\.toppscholars\.com([\/#\?].*){0,1}$

相关问题