如何读取 Vapor 4 上的 apple-app-site-association 文件?

How to read the apple-app-site-association file on Vapor 4?

为了在 Apple 平台上使用自动填充密码,我正在 Apple App Site Association (AASA) Validator 中测试 website。 我在 Public/.well-known/apple-app-site-association 文件中添加了所需的 json,以便自动填充密码在我的 iOS 上工作申请。

此测试的结果返回此错误: Your file's 'content-type' header was not found or was not recognized.

有人遇到过这个问题吗? AASA 文件似乎没有下载到我的设备中。

请注意,在 iOS 14 日,AASA 文件将通过 Apple 的 CDN 传送,这与当前下载 AASA 文件的方式不同。

在我的 Vapor 4 项目中是否还有其他方法可以使事情正常进行?

我遇到了同样的问题,按照imike的回答做了一些研究,这是解决方案。

  1. 创建自定义中间件
struct UniversalLinksMiddleware: Middleware {
    
    func respond(to request: Request, chainingTo next: Responder) -> EventLoopFuture<Response> {
        guard request.url.string == "/.well-known/apple-app-site-association" else {
            return next.respond(to: request)
        }
        
        return next.respond(to: request).map { response in
            response.headers.add(name: "content-type", value: "application/json")
            return response
        }
    }
    
}

  1. config.swift 文件中添加此中间件。注意添加中间件的顺序,必须在FileMIddleware之前添加。因为离开您的应用程序的响应以相反的顺序通过中间件。
app.middleware.use(UniversalLinksMiddleware())
app.middleware.use(FileMiddleware(publicDirectory: app.directory.publicDirectory))