它仅适用于 https 服务器。
脚步:
1)在rails应用程序的公共目录下创建一个类似apple_app_site_association的文件,没有任何扩展名,内容如下
{
"applinks": {
"apps": [],
"details": [
{
"appID": "<TEAM_DEVELOPER_ID>.<BUNDLE_IDENTIFIER>",
"paths": [ "*" ]
}
]
}
}
2) 路线.rb
get '/apple-app-site-association', to: 'pages#apple_app_site_association'
3) pages_controller.rb
def apple_app_site_association
association_json = File.read(Rails.public_path + "apple_app_site_association")
render :json => association_json, :content_type => "application/json"
end
例如,您检查
http://18.216.158.101/apple-app-site-association
要进行测试,您可以在 heroku 上创建一个应用程序。