Top "Uri" questions

A Uniform Resource Identifier (or URI) is a string of characters used to identify a name or resource.

What do you call the entire first part of a URL?

If I have a URL like: http://www.example.com:9090/test.html Then I know that www.example.com is …

url terminology uri
When to use query parameters versus matrix parameters?

Query parameters: http://example.com/apples?order=random&color=blue Matrix parameters: http://example.com/apples;order=random;color=…

uri query-parameters
Android notification setSound is not working

In my hybrid Cordova Android app targeting API 23+ I want to use a custom sound for notifications. To that end …

android uri android-notifications android-6.0-marshmallow
How do you create a mailto: link without the (to) part

How do you properly construct a mailto: link without the part. mailto:[email protected]? I dont want the address …

uri mailto
hadoop fs -ls results in "no such file or directory"

I have installed and configured Hadoop 2.5.2 for a 10 node cluster. 1 is acting as masternode and other nodes as slavenodes. I …

hadoop uri hdfs
Custom URI Schemes for the Facebook Messenger

Given the recent "encouragement" by Facebook to migrate to a separate messenger app, and as a followup to the {very …

android uri deep-linking facebook-messenger
How do I include extensions in the tel: URI?

I currently have a webpage serving up phone numbers, some of these phone numbers have extensions so I have written …

html mobile uri phone-number tel
Replace host in Uri

What is the nicest way of replacing the host-part of an Uri using .NET? I.e.: string ReplaceHost(string original, …

c# .net uri
Add scheme to URL if needed

To create a Uri from a string you can do this: Uri u = new Uri("example.com"); But the problem …

c# .net uri
Android Webview shouldOverrideUrlLoading method

When is shouldOverrideUrlLoading method called? webView.setWebViewClient(new WebViewClient(){ @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { } }); Is it called …

android android-webview uri android-assets