如何通过WP7中的另一个应用程序安装BETA应用程序?

发布于 2024-12-28 06:50:33 字数 360 浏览 2 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦中的蝴蝶 2025-01-04 06:50:33

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文