我在网上搜索了完整的 URI 协议(protocol)列表 (XXX://),以便在 Windows Phone 8 中打开不同的应用程序。我找到了一些列表,但只有很少的协议(protocol)。我在这篇 wiki 帖子中希望制作一份完整的协议(protocol)列表,并至少涵盖 Windows Phone 8 中的所有常用应用程序。
有很多部分列表例如: http://developer.nokia.com/Community/Wiki/URI_Association_Schemes_List http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj662937(v=vs.105).aspx
但是我认为,如果我们能够编制一个包含所有 URL 方案的大列表,那就太好了。即使是未记录的 URL 方案也会很有趣。
最佳答案
我添加了我在下面找到的所有内容。有知道的欢迎补充:
股票应用
http:[URL] Launches the web browser and navigates to the specified URL.
mailto:[email address] Launches the email app and creates a new message with the specified email address on the To line. Note that the email is not sent until the user taps send.
ms-settings-airplanemode: Launches the Airplane Mode Settings app.
ms-settings-bluetooth: Launches the Bluetooth Settings app.
ms-settings-cellular: Launches the Cellular Settings app.
ms-settings-emailandaccounts: Launches the email and accounts settings app.
ms-settings-location: Launches the Location Settings app.
ms-settings-lock: Launches the Lock Screen settings app.
ms-settings-wifi: Launches the Wi-Fi Settings app.
zune:navigate?appid=[app ID] Launches the Windows Phone Store and shows the details page for the specified app.
zune:reviewapp Launches the Store and shows the review page for the calling app.
zune:reviewapp?appid=app[app ID] Launches the Store and shows the review page for the specified app. Note that you must prepend “app” to the ID for the specified app. For example, the URI for reviewing an app with the ID fdf05477-814e-41d4-86cd-25d5a50ab2d8 would be zune:reviewapp?appid=appfdf05477-814e-41d4-86cd-25d5a50ab2d8
zune:search?publisher=[publisher name] Launches the Store and searches for items by publisher name.
zune:search?keyword=[search keyword]&contenttype=app Launches the Store and searches for apps by keyword.
zune:search?keyword=[search keyword]&publisher=[publisher name]&contenttype=app Launches the Store and searches for the specified content. All parameters are optional. Specifying “contenttype=app” will limit the search to apps. Omitting this parameter will search all content.
ms-drive-to: Get driving directions http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj710324(v=vs.105).aspx
ms-walk-to: Get walking directions http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj710324(v=vs.105).aspx
诺基亚应用
nokia-music: Nokia Music app. See http://developer.nokia.com/Community/Wiki/Nokia_Music_app-to-app_protocol_for_Windows_Phone_8
directions: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html
explore-maps: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html
guidance-drive: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html
guidance-walk: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html
places: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html
public-transit: Here Maps. See http://www.developer.nokia.com/Resources/Library/Lumia/#!maps-and-navigation/here-launchers.html
商店应用
metrotube: Metrotube, see http://lazywormapps.com/metrotube-uri-schema.html
instagraph: Instagraph, see: http://www.geekchamp.com/forums/app-uri-protocol-directory/instagraph-custom-uri-schema
wpcentral: Windows Phone Central, see http://jaybennett.co.uk/2013/06/11/using-the-wpcentral-app-uri-schema/
pouch: Pouch, see http://jgstechthoughts.wordpress.com/2013/06/12/custom-uri-associations-for-pouch-for-windows-phone/
metrotour: Metrotour, see: http://www.geekchamp.com/forums/app-uri-protocol-directory/metrotour-uri-protocol
spotify: Spotify, see: https://www.spotify.com/fi/blog/archives/2008/01/14/linking-to-spotify/
mehdoh: Mehdoh, see: http://www.mehdoh.com/uri.htm
pictureslab: Pictures lab, see: http://kodierer.blogspot.de/2013/07/just-call-us-well-might-call-you-how-to.html
gmaps: gMaps, see: http://dreamteam-mobile.com/blog/2013/01/adding-mapping-features-to-your-windows-8-windows-phone-app/
geosense: Geo, see: http://en.wikipedia.org/wiki/Geo_URI
keyring: Keyring, see: http://directblog.schmidtbonn.de/2013/07/11/keyring-uri-schema/
foursquare: Foursquare, see: https://developer.foursquare.com/resources/client#iphone
fb:
引用资料:
http://developer.nokia.com/Community/Wiki/URI_Association_Schemes_List
http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj662937(v=vs.105).aspx
关于c# - Windows Phone 8 上存在哪些 URI 协议(protocol)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18616402/
如何在ruby中调用C#dll? 最佳答案 我能想到几种可能性:为您的DLL编写(或找人编写)一个COM包装器,如果它还没有,则使用Ruby的WIN32OLE库来调用它;看看RubyCLR,其中一位作者是JohnLam,他继续在Microsoft从事IronRuby方面的工作。(估计不会再维护了,可能不支持.Net2.0以上的版本);正如其他地方已经提到的,看看使用IronRuby,如果这是您的技术选择。有一个主题是here.请注意,最后一篇文章实际上来自JohnLam(看起来像是2009年3月),他似乎很自在地断言RubyCL
我正在尝试在Ruby中复制Convert.ToBase64String()行为。这是我的C#代码:varsha1=newSHA1CryptoServiceProvider();varpasswordBytes=Encoding.UTF8.GetBytes("password");varpasswordHash=sha1.ComputeHash(passwordBytes);returnConvert.ToBase64String(passwordHash);//returns"W6ph5Mm5Pz8GgiULbPgzG37mj9g="当我在Ruby中尝试同样的事情时,我得到了相同sha
我的模型有defself.empty_building//stuffend我怎样才能对这个现有的进行rspec?,已经尝试过:describe"empty_building"dosubject{Building.new}it{shouldrespond_to:empty_building}endbutgetting:Failure/Error:it{shouldrespond_to:empty_building}expected#torespondto:empty_building 最佳答案 你有一个类方法self.empty_bu
C#实现简易绘图工具一.引言实验目的:通过制作窗体应用程序(C#画图软件),熟悉基本的窗体设计过程以及控件设计,事件处理等,熟悉使用C#的winform窗体进行绘图的基本步骤,对于面向对象编程有更加深刻的体会.Tutorial任务设计一个具有基本功能的画图软件**·包括简单的新建文件,保存,重新绘图等功能**·实现一些基本图形的绘制,包括铅笔和基本形状等,学习橡皮工具的创建**·设计一个合理舒适的UI界面**注明:你可能需要先了解一些关于winform窗体应用程序绘图的基本知识,以及关于GDI+类和结构的知识二.实验环境Windows系统下的visualstudio2017C#窗体应用程序三.
最近在学习CAN,记录一下,也供大家参考交流。推荐几个我觉得很好的CAN学习,本文也是在看了他们的好文之后做的笔记首先是瑞萨的CAN入门,真的通透;秀!靠这篇我竟然2天理解了CAN协议!实战STM32F4CAN!原文链接:https://blog.csdn.net/XiaoXiaoPengBo/article/details/116206252CAN详解(小白教程)原文链接:https://blog.csdn.net/xwwwj/article/details/105372234一篇易懂的CAN通讯协议指南1一篇易懂的CAN通讯协议指南1-知乎(zhihu.com)视频推荐CAN总线个人知识总
有几种方法:first_or_create_by、find_or_create_by等,它们的工作原理是:与数据库对话以尝试找到我们想要的东西如果我们找不到,就自己做保存到数据库显然,并发调用这些方法可能会使两个线程都找不到它们想要的东西,并且在第3步中一个线程会意外失败。似乎更好的解决方案是,创建或查找即:提前在您的数据库中创建合理的唯一性约束。如果你想保存一些东西,就保存它如果有效,那就太好了。如果它因为RecordNotUnique异常而无法工作,它已经存在,太好了,加载它那么在什么情况下我想使用Rails内置的东西而不是我自己的(看起来更可靠)create_or_find?
您认为可以作为插件很好地存在于您的Rails应用程序中必须实现的哪些行为?您过去曾搜索过哪些插件功能但找不到?哪些现有的Rails插件可以改进或扩展,如何改进或扩展? 最佳答案 我希望在管理界面中看到一个引擎插件,它提供了应用程序中所有模型的仪表板摘要,以及可配置的事件图表。 关于ruby-on-rails-您希望看到哪些Rails插件?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questio
一段时间以来,我一直在使用open_uri下拉ftp路径作为数据源,但突然发现我几乎连续不断地收到“530抱歉,允许的最大客户端数(95)已经连接。”我不确定我的代码是否有问题,或者是否是其他人在访问服务器,不幸的是,我无法真正确定谁有问题。本质上,我正在读取FTPURI:defself.read_uri(uri)beginuri=open(uri).readuri=="Error"?nil:urirescueOpenURI::HTTPErrornilendend我猜我需要在这里添加一些额外的错误处理代码...我想确保我采取一切预防措施来关闭所有连接,这样我的连接就不是问题所在,但是我
我正在使用DMOZ的listofurltopics,其中包含一些具有包含下划线的主机名的url。例如:608609TheOuterHeaven610InformationandimagegalleryofMcFarlane'sactionfiguresforTrigun,Akira,TenchiMuyoandotherJapaneseSci-Fianimations.611Top/Arts/Animation/Anime/Collectibles/Models_and_Figures/Action_Figures612虽然此url可以在网络浏览器中使用(或者至少在我的浏览器中可以使用:
我在Ruby程序中有两个URI。一个肯定是绝对URI,另一个可能是绝对URI或相对URI。我想在第一个的上下文中将第二个转换为绝对URI,所以如果第一个是http://pupeno.com/blog第二个是/about,结果应该是http://pupeno.com/about.有什么想法吗? 最佳答案 Ruby的内置URI和Addressablegem,做这个简短的工作。我更喜欢Addressable,因为它功能更全面,但URI是内置的。require'uri'URI.join('http://pupeno.com/blog','/