ios9 - iOS Universal link not working -


my server returning content that's supposed in route apple-app-site-association correct teamid + bundleid , path /app/myresource/34

i enabled associated domains , added both staging , production server's domain this: applinks:production.com, applinks:project.staging.com

when go http://project.staging.com/app/myresource/34 on simulator's safari, doesn't deep link. did miss something?

ps: json contained in http://project.staging.com/apple-app-site-association not ssl signed, read since ios 9 beta 2 don't need sign, have security transport allowing http connections , i'm able retrieve data staging server no ssl.

ps2: json, in case:

{    "applinks": {        "apps": [ ],        "details": {            "my-team-id.my.bundle.id": {                "paths": [                    "/app/myresource/*"                ]            }        }    } } 

this must format of json:

 {    "applinks": {        "apps": [ ],        "details": [            {                "appid": "t5tq36q2sq.com.branch.sdk.testbed",                "paths": [ "*" ]            }        ]    } 

Comments

Popular posts from this blog

javascript - Chart.js (Radar Chart) different scaleLineColor for each scaleLine -

apache - Error with PHP mail(): Multiple or malformed newlines found in additional_header -

java - Android – MapFragment overlay button shadow, just like MyLocation button -