iOS 9与第三方Mandrill / MailChimp深度链接

时间:2015-11-27 18:58:46

标签: ios xcode ios9 mandrill deep-linking

我们在我们的应用程序中实现了iOS9通用深度链接,它与我们当前的域名一起正常运行。现在我们使用Mandrill平台向我们的订阅者发送电子邮件,重定向到我们的实际URL,现在在Safari中打开mandrill URL并重定向到我们的实际URL,但我们的应用程序无法打开。

任何帮助或建议都将不胜感激。

1 个答案:

答案 0 :(得分:1)

我通过禁用我的分支链接的mandrill跟踪来解决这个问题

CreateTable( "dbo.UserRoleAccesses", c => new { UserRoleAccessId = c.Long(nullable: false, identity: true), UserRoleId = c.String(), IsActive = c.Boolean(nullable: false), Name = c.String(), UserRoleAccessType = c.Int(nullable: false), ApplicationRole_Id = c.String(maxLength: 128), }) .PrimaryKey(t => t.UserRoleAccessId) .ForeignKey("dbo.AspNetRoles", t => t.ApplicationRole_Id) .Index(t => t.ApplicationRole_Id); 是关键

在我的模板中:

mc:disable-tracking