如何通过WP7中的另一个应用程序安装BETA应用程序?
如何在 WP7 上安装来自 BETA 市场的应用程序? (相关人员将使用我在邮件列表中列出的 Windwos Live ID(可以在其注册设备上安装 BETA 应用程序的人))。我想出了这个:
WebBrowserTask browser = new WebBrowserTask( );
browser.URL = deeplink;
browser.Show( );
但我希望它看起来比这更整洁。例如,现在浏览器将启动,进入一个页面,您仍然必须按(继续或其他)| 我真正想要的是浏览器(如果使用的话)在后台运行,并让 WebClient 从应用程序本身下载应用程序。 (这可能吗?) 提前打招呼并致谢
how can I install an application from the BETA market on a WP7? ( the person in question would be using the Windwos Live ID that I have out on the mailing list ( ppl who can install the BETA app on their registrated device ) ). I came up with this:
WebBrowserTask browser = new WebBrowserTask( );
browser.URL = deeplink;
browser.Show( );
But I would like it to look a lot neater than that. For example, now the Browser will start up, coming to a page where you have to still press ( continue or something ) |
What I would really likem is for the browser ( if used at all ) run in the background, and let WebClient download the app from the app itself. ( is this even possible? )
greetz and thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
MarketplaceDetailTask
与测试版应用程序的 GUID 结合使用(这是深层链接 URL 的长部分)。它将直接在手机上启动 Marketplace 应用程序。然后,测试版用户应该能够像从 Marketplace 获取任何其他应用程序一样下载您的应用程序。GUID 是深层链接 URL 中“?appId=”后面的长字符串。
请参阅 MarketplaceDetailTask 的 MSDN 文档. 您必须在中指定应用程序的 GUID
ContentIdentifier
属性。Use
MarketplaceDetailTask
with the GUID of the beta application (this is the long part of the deep-link URL). It will directly launch the Marketplace app on the phone. Then the beta-user should be able to download your app as any other app they would get from Marketplace.The GUID is the long string after "?appId=" in your deep link URL.
See MSDN docs for MarketplaceDetailTask. You'll have to specify the GUID of your app in
the
ContentIdentifier
property.