Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to know how can I encode a URL so that I can pass it as a parameter into google maps?

https://maps.google.com/maps?q=https:%2F%2Fdl.dropbox.com%2Fu%2F94943007%2Ffile.kml&hl=en&sll=32.824552,-117.108978&sspn=0.889745,1.575165&t=m&z=4

as you can see the URL is being passed as a parameter into the maps.google.com/ url

the question is if i start with a url like http://www.microsoft.com/somemap.kml, how can i encode this URL so that i can pass it into it

share|improve this question

1 Answer

up vote 2 down vote accepted

The process is called URL encoding:

>>> urllib.quote('https://dl.dropbox.com/u/94943007/file.kml', '')
'https%3A%2F%2Fdl.dropbox.com%2Fu%2F94943007%2Ffile.kml'
share|improve this answer
thanks so much!! what is the purpose of this url encoding? – Артём Царионов Aug 22 '12 at 18:49
@Артём Царионов: the encoding is used as you might guess in URLs (more generally URIs), for application/x-www-form-urlencoded media type (HTML forms, e-mails). – J.F. Sebastian Aug 22 '12 at 19:02
i'm sorry but i think this is wrong – Артём Царионов Aug 24 '12 at 18:15
google translates that URL into: https:%2F%2Fdl.dropbox.com%2Fu%2F94943007%2Ffile.kml whereas python translates into https%3A%2F%2Fdl.dropbox.com%2Fu%2F94943007%2Ffile.kml – Артём Царионов Aug 24 '12 at 18:15
both represent the same string if decoded. You could set the 2nd arg to ':' to produce the exact encoded string. – J.F. Sebastian Aug 24 '12 at 18:46
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.