与网站上的程序(例如 iTunes)进行交互
可以通过网络浏览器中的链接打开 iTunes 链接和 iTunes 中的应用程序或专辑。
这是如何工作的以及我可以在 C# .NET 应用程序中执行此操作吗?
There are iTunes links that will open up and app or an album in iTunes from a link in a web browser.
How does this work and can I do it in a C# .NET app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iTunes 在注册表中注册
itms://
URI 协议并将其与 iTunes.exe 关联。然后,该网页将打开一个
itms://
链接。MSDN 对此进行了记录,包括一个 C# 示例。
iTunes registers the
itms://
URI protocol in the registry and associates it with iTunes.exe.The webpage then opens an
itms://
link.MSDN documents this, including a C# example.