在AASA文件中有排除特定html页面的方法吗?例如,这是我不想通过App打开的URL:
https://example.com/test.html?type=asdf&code=X12345&language=de-DE但是我想通过app打开下面的urls:
https://example.com/pathX/triggerApp.html?c=1234567890&l=de-DE
https://example.com/fwd/c/12345678有没有人知道如何做到这一点。或者,我是否需要要求后端的人调整urls,以便能够在应用程序端进行区分?
发布于 2022-05-30 11:52:43
通过使用paths值,您只能包含所需的值。
至于排除urls,Apple文档并不能说明什么,但在另一个问题中,您只需使用以下内容:
paths: ["NOT \some\excluded", "\some\other\included", ...]
https://stackoverflow.com/questions/72433462
复制相似问题