Tagged Questions

This is about encoding text in/for a url. Some characters are not valid for URLs. For instance ' or \ and more

learn more… | top users | synonyms

59
votes
15answers
56k views

HTTP URL Address Encoding in Java

My Java standalone application gets a URL (which points to a file) from the user and I need to hit it and download it. The problem I am facing is that I am not able to encode the HTTP URL address ...
45
votes
6answers
17k views

PHP - urlencode vs rawurlencode?

If i want to create an url using a variable i have two choices to encode the string. urlencode() and rawurlencode(). What exactly are the differences and which is preferred?
32
votes
2answers
6k views

when to encode space to plus (+) and when to %20?

Sometimes the spaces get url encoded to + sign, some other times to %20, what is the difference and why and why not this happens?
27
votes
2answers
13k views

URL encoding the space character: + or %20?

When is a space in a URL encoded to + and when is it encoded to %20?
25
votes
5answers
3k views

How do you UrlEncode without using System.Web?

I am trying to write a windows client application that calls a web site for data. To keep the install to a minimum I am trying only use dlls in the .NET Framework Client Profile. Trouble is that I ...
23
votes
5answers
9k views

What is the proper way to URL encode Unicode characters?

I know of the non-standard %uxxxx scheme but that doesn't seem like a wise choice since the scheme has been rejected by the W3C. Some interesting examples: The heart character. If I type this into ...
22
votes
6answers
67k views

URL Encoding using C#

I have an application which I've developed for a friend. It sends a POST request to the VB forum software and logs someone in (with out setting cookies or anything). Once the user is logged in I ...
17
votes
7answers
21k views

How do I encode URI parameter values?

I want to send a URI as the value of a query/matrix parameter. Before I can append it to an existing URI, I need to encode it according to RFC 2396. For example, given the input: ...
16
votes
8answers
6k views

facebook error 'Error validating verification code'

very strange error. i use gide http://developers.facebook.com/docs/authentication/. so i create request to fb and pass redirect_uri. i use test site on localhost. so if i pass ...
16
votes
12answers
19k views

URLEncode from a bash script

I am trying to write a bash script for testing that takes a parameter and sends it through curl to web site. I need to url encode the value to make sure that special characters are processed ...
15
votes
3answers
7k views

JavaScript URL Decode function

What's the best JavaScript URL decode utility? Encoding would be nice too and working well with jQuery is an added bonus.
14
votes
2answers
8k views

Url encoding in Android

How do you encode an url in Android? I thought it was like this: final String encodedURL = URLEncoder.encode(urlAsString, "UTF-8"); URL url = new URL(encodedURL); If I do the above, the http:// in ...
13
votes
6answers
7k views

HttpUtility.UrlEncode in console application

I'd like to use HttpUtility.UrlEncode in a console application, VB.NET, VS 2010 Beta 2. System.Web.HttpUtility.UrlEncode(item) Error message: 'HttpUtility' is not a member of 'Web'. In this ...
12
votes
1answer
8k views

URL encode a non-value pair in Python

I'm trying to use Google's AJAX (JSON) Web Search API in Python. I'm stuck because Python's urllib.urlencode() only takes value pairs, not strings by themselves, to encode. In Google's API, the query ...
11
votes
1answer
4k views

How to percent-encode url parameters in python?

If I do url = "http://example.com?p=" + urllib.quote(query) It doens't encode "/" to "%2F" (breaks OAuth normalization) It doens't handle unicode (it throw an exception) is there a better ...
10
votes
2answers
15k views

JavaScript URL encode

I am encoding a string that will be passed in a url (get). But, if I use escape, encodeURI or encodeURIcomponent, & will be replaced with %26amp%3B and I want it to be replaced with just %26... ...
9
votes
3answers
269 views

urlencode() the 'asterisk' (star?) character

I'm testing PHP urlencode() vs. Java java.net.URLEncoder.encode(). Java String all = ""; for (int i = 32; i < 256; ++i) { all += (char) i; } System.out.println("All characters: -||" ...
9
votes
4answers
4k views

querystring encoding of a javascript object

Do you know a fast and simple way to encode a javascript object into a string that I can pass via GET? No jQuery, no other frameworks, just plain Javascript :)
8
votes
4answers
1k views

How do I pass session variables from one domain to another in PHP

I have encountered a situation where I need to pass $_SESSION variables from one domain to an iFrame page from another domain. I have spent the last 16 days trying various methods to no avail. I think ...
7
votes
3answers
126 views

C# Absolute URI removes “..” from URL

I have to upload a file via FTP to ftp://ftp.remoteServer.com My root directory on remoteServer contains an "upload" and a "download" folder. I need to put my file in the "upload" directory. But on ...
7
votes
1answer
237 views

Are %20 and + the same in a http url?

I know that %20 and + both decode to the same binary value (a space), and for most webservers, especially those that map to physical files they will point to the same resource. But my question is, ...
7
votes
3answers
1k views

Error with urlencode in python

I have this: a = {'album': u'Metamorphine', 'group': 'monoku', 'name': u'Son Of Venus (Danny\xb4s Song)', 'artist': u'Leandra', 'checksum': '2836e33d42baf947e8c8adef48921f2f76fcb37eea9c50b0b59d7651', ...
6
votes
2answers
883 views

Java - encode URL

How can I encode dynamic String values in order to create URL instances. I need to replace spaces with %20, accents, non ascii caracters... ? I tried to use URLEncoder but it also encodes '/' ...
6
votes
4answers
500 views

Play Framework double url encoding

given the following controller method where username = bob and emailAddress = bob@bob.com public static void resetPassword(String username, String emailAddress) { String url = ...
6
votes
2answers
2k views

Url encoding quotes and spaces

I have some query text that is being encoded with JavaScript, but I've encountered a use case where I might have to encode the same text on the server side, and the encoding that's happening is not ...
6
votes
1answer
152 views

Does HttpUtility.UrlEncode match the spec for 'x-www-form-urlencoded'?

Per MSDN URLEncode converts characters as follows: Spaces ( ) are converted to plus signs (+). Non-alphanumeric characters are escaped to their hexadecimal representation. Which is ...
6
votes
4answers
694 views

URL Encode all non alpha numeric in C#

I need to fully URL Encode an email address. HttpUtility.UrlEncode seems to ignore certain characters such as ! and . I need to pass an email address in a url formated like this: ...
6
votes
6answers
4k views

How do I replace all the spaces with %20 in C#

I want to make a string into a URL using C#, there must be something in the .NET framework that should help, right?. Thanks. Haim.
6
votes
4answers
2k views

.net UrlEncode - lowercase problem

I'm working on a data transfer for a gateway which requires me to send data in UrlEncoded form. However, .net's UrlEncode creates lowercase tags, and it breaks the transfer (Java creates uppercase). ...
6
votes
7answers
5k views

Encode/Decode URLs in C++

Does anyone know of any good C++ code that does this
5
votes
2answers
296 views

HttpUtility.UrlEncode and Application_Start

As per http://ayende.com/blog/4599/hunt-the-bug, I've run into one of those scenarios whereby "Response is not available in this context". Greatly simplified, the following throws an exception in ...
5
votes
2answers
427 views

PHP Mod_rewrite and URL-encoded symbols - only can use either of them but not both?

The mod_rewrite seems to convert the symbol of plus before I get it into $_REQUEST, and I don't know what to fix it... RewriteRule ^invite/([a-zA-Z0-9\-\+\/]+)/?$ invite.php?key=$1 [L,QSA] For ...
5
votes
7answers
2k views

URLEncoder not able to translate space character

I am expecting System.out.println(java.net.URLEncoder.encode("Hello World", "UTF-8")); gave me Hello%20World (20 is ASCII Hex code for space) However, what I get is Hello+World Am I using the ...
5
votes
3answers
4k views

URLEncoding a string with Objective-C

I'm trying to URL encode a string to form a GET request from objective-c. NSString *params = @"'Decoded data!'/foo.bar:baz"; NSRunAlertPanel( @"Error", [params urlEncoded], @"OK", nil, nil ); This ...
5
votes
1answer
7k views

jQuery urlencode/decode patch help

I'm using this jQuery urlencode and urldecode plugin - very simple and easy to use but it doesn't, in its original form, remove + from the string. The one comment on the home page suggests a patch ...
5
votes
4answers
4k views

XSLT version 1 URL encoding

Is there a URL encoding function in XSLT version 1? I need something similar to encodeURIComponent function in javascript? Seeing as this is not possible as I'm using .NET platform as the XSLT is ...
5
votes
3answers
1k views

Why does URLEncodedFormat() in CFML encodes valid URL characters?

What are the reasons behind URLEncodedFormat() escaping valid URL characters? valid characters: - _ . ! ~ * " ( ) The CF8 Doc said, "[URLEncodedFormat() escapes] non-alphanumeric characters with ...
5
votes
4answers
5k views

When POSTing an associative array with cURL, do I need to urlencode the contents first?

When I assign an array of data to be POSTed as a cURL option (via CURLOPT_POSTFIELDS), do I need to urlencode that data first or will that be taken care of?
5
votes
5answers
7k views

url encoded forward slashes breaking my codeigniter app

i’m trying to create a url string that works like this: /app/process/example.com/index.html so in other words, /app/process/$URL i then retrieve the url with $this->uri->segment(3); ...
5
votes
2answers
13k views

How can I URL encode a string in Excel VBA?

Is there a built-in way to URL encode a string in Excel VBA or do I need to hand roll this functionality?
5
votes
3answers
2k views

Create query parameters in javascript

Is there any way to create the query parameters for doing a GET request in javascript. Just like in python you have urllib.urlencode() which takes in a dict (or list of two tuples) and creates a ...
4
votes
2answers
137 views

Allow Double URL Encoded Request Paths To Be Valid

I have a standard ASP.Net WebForms application running on IIS 7.0 with an Integrated Managed Pipeline. Many of the images on our site have spaces in their files names (e.g. './baseball drawing.gif'). ...
4
votes
1answer
109 views

php url encode issue

I send out html email on user activation with token that I encode with rawurlencode(). So - link appears in email like this: <a ...
4
votes
4answers
1k views

Encoding URL query parameters in Java

How does one encode query parameters to go on a url in Java? I know, this seems like an obvious and already asked question. There are two subtleties I'm not sure of: Should spaces be encoded on ...
4
votes
1answer
246 views

HttpUtility.UrlEncode will not encode ! as %21

HttpUtility.UrlEncode("!!!test", Encoding.GetEncoding("windows-1251")) It doesn't encode ! to %21 - why?
4
votes
1answer
645 views

How to URL encode JSF outputLink value

I've got some code that looks similar to this: <h:outputLink value="#{bean.url}" /> But the output contains an apostrophe in the link href which is not URL encoded. Am I doing something ...
4
votes
6answers
568 views

Python: what does “…”.encode(“utf8”) fix?

I wanted to url encode a python string and got exceptions with hebrew strings. I couldn't fix it and started doing some guess oriented programming. Finally, doing mystr = mystr.encode("utf8") before ...
4
votes
4answers
222 views

urlencode except /

Is there a way to urlencode except directory seperators / in the path ? like urlencode('/this/is/my/file right here.jpg');
4
votes
2answers
705 views

URL escaping MFC strings

How do you URL escape an MFC CString?
4
votes
5answers
6k views

UrlEncode - Javascript vs. C#

I have a URL which requires some parameters. The values of those parameters can be accented characters, so I absolutely need to UrlEncode them. Strangely, I see a difference between the behavior or ...

1 2 3 4 5 9