PushSharp + Windows Phone的深层链接上吐司Notifcation(PushS

2019-09-02 13:38发布

当使用PushSharp随着Windows Phone,我送了深层链接到一个视图中我的应用程序的通知。

push.QueueNotification(new WindowsPhoneToastNotification()
.ForEndpointUri(new Uri(endpoint))
.ForOSVersion(WindowsPhoneDeviceOSVersion.Eight)
.WithBatchingInterval(BatchingInterval.Immediate)
.WithNavigatePath("/Views/DetailView.xaml")
.WithParameter("slug", slug)
.WithText1(text)
.WithText2(message));

但是当敬酒出现,我触摸它来打开应用程序,该应用程序打开我的默认视图,而不是要求的DetailView。

不应该在该开我的DetailView?

Answer 1:

你可能想尝试“〜/查看/ DetailView.xaml”,而不是一个路径...



文章来源: PushSharp + Windows Phone deep linking on Toast Notifcation