I tried to pass more than one parameter through URL using python, i wrote as this:
self.response.out.write("""<html><br><body><center> <li ><a href="download.py?blob_key=%s & width=%s & height=%s" >%s</a></center></body></html>
""" % (str(blob_key),str(w),str(h), str(name)))
but i can’t pass through this method,i don’t know the error exactly.
Thanks
The problem here is whitespace. HTTP protocol doesn’t tolerate it in request strings.
I would write that like this:
(
str.formatis the new preferred alternative tostr%something).