Wget omits GET params after the first one
Provides native Win32 open source ports and utilities
Brought to you by:
gnuwin32
We know that the GET params are concated by '&'. But wget omit params after '&'.
C:>wget http://maps.google.com/maps/api/staticmap?ce
nter=23.392324,113.299402&zoom=13&size=640x360&maptype=satellite&sensor=false
--2012-04-05 20:53:13-- http://maps.google.com/maps/api/staticmap?center=23.392
324,113.299402
Resolving maps.google.com... 74.125.128.102, 74.125.128.113, 74.125.128.138, ...
Connecting to maps.google.com|74.125.128.102|:80... connected.
HTTP request sent, awaiting response... 400 Bad Request
2012-04-05 20:53:13 ERROR 400: Bad Request.
Thanks @spreger5 .
you have to \"protect\" the ampersand because it has a special
meaning for cmd.exe.
Use ^& (caret followed by ampersand) instead of & on all
occurances.