项目:App双语帮
负责人:
里程碑:
是否置顶: 重要
标签: enhancement
Paul 2019-10-21 09:28

iOS Universal Link server side set up

1. apple-app-site-association

a. build a file named apple-app-site-association for iOS, And put it into following dirs:
  • $root/
  • $root/.well-known/

https://www.bilingo.com/apple-app-site-association
https://www.bilingo.com/.well-known/apple-app-site-association

https://test.links123.net/apple-app-site-association
https://test.links123.net/.well-known/apple-app-site-association

b. Requirements
  • must be no redirects
  • host must over https
c. file content sample
  1. {
  2. "applinks": {
  3. "apps": [],
  4. "details": [
  5. {
  6. "appID": "<TEAM_IDENTIFIER>.com.awesome.app",
  7. "paths": [
  8. "/*/localized/wildcard/route/*",
  9. "/wildcard/route/*",
  10. "/*/localized/route",
  11. "/static/route"
  12. ]
  13. }
  14. ]
  15. }
  16. }

2. itunes connect

a. Create/modify the provisioning profile to allow associated domains.

Create/modify the provisioning profile to allow associated domains.

Android Deep Link && App Link server side set up

  1. https://developers.google.com/digital-asset-links/tools/generator
    通过命令keytool -list -v -keystore links123.jks获取SHA256
    分别给 test.links123.net 和 www.bilingo.com 生成Statement 拷贝到assetlinks.json中
b. put it into following dirs:

评论(1)

yyppaag
yyppaag 2020-05-17 13:36

通过微信支付开发后,已经完成测试了universalLink

游客