gpt4 book ai didi

ios - Apple-app-site-association 文件不会下载

转载 作者:可可西里 更新时间:2023-11-01 03:45:26 25 4
gpt4 key购买 nike

我已经将我的 apple-app-site-association 文件上传到我的 HTTPS 网络服务器的根目录之后,我在 xcode 中添加了我的关联域。我遵循了 apple 通用链接教程。

[SWC] ### 拒绝重定向到“https://examplecustomdomain.com/apple-app-site-association/” '(原创'https://examplecustomdomain.com/apple-app-site-association')

我检查了我的设备日志,我看到了类似上面的错误

最佳答案

最近在尝试实现通用链接功能时遇到了同样的问题。 fbeeper 给出了一个很好的响应,帮助我验证确实发生了重定向。

但是,它并没有帮助我确定如何解决重定向问题。因此,对于像我这样使用基于 Ruby on Rails 的后端的人来说,这里有一个示例,说明如何以满足 Apple 的所有要求的方式提供讨厌的 apple-app-site-association 文件:

  • 将您的 apple_app_site_association json 文件放在 public 文件夹中
  • 在您的 config/routes.rb 文件中,添加如下一行:

get '/apple-app-site-association' => 'home#apple_app_site_association'

  • 然后在相关的 Controller 文件(本例中为 home_controller)中,定义您的方法:

    def apple_app_site_association
    association_json = File.read(Rails.public_path + "apple-app-site-association")
    呈现:json => association_json,:content_type =>“应用程序/pkcs7-mime”
    结尾

关于ios - Apple-app-site-association 文件不会下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34166173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com