|
@@ -495,9 +495,19 @@ namespace MySystem.Areas.Api.Controllers
|
|
|
Dictionary<string, object> result = new Dictionary<string, object>();
|
|
|
Dictionary<string, object> webcredentials = new Dictionary<string, object>();
|
|
|
List<string> apps = new List<string>();
|
|
|
- apps.Add("7HQBL6X2N5.com.kexiaoshuang.ios");
|
|
|
+ apps.Add("TKFY2BZ6Z7.com.cyb888.cyb");
|
|
|
webcredentials.Add("apps", apps);
|
|
|
result.Add("webcredentials", webcredentials);
|
|
|
+
|
|
|
+ Dictionary<string, object> applinks = new Dictionary<string, object>();
|
|
|
+ applinks.Add("apps", new List<string>());
|
|
|
+ List<Dictionary<string, object>> details = new List<Dictionary<string, object>>();
|
|
|
+ Dictionary<string, object> detail = new Dictionary<string, object>();
|
|
|
+ detail.Add("appID", "TKFY2BZ6Z7.com.cyb888.cyb");
|
|
|
+ detail.Add("paths", "/ios/*");
|
|
|
+ details.Add(detail);
|
|
|
+ applinks.Add("details", details);
|
|
|
+ result.Add("applinks", applinks);
|
|
|
return result;
|
|
|
}
|
|
|
|