New issue 137 by jimhorn...@gmail.com: How do you "check" checkbox in POST
form?
http://code.google.com/p/httplib2/issues/detail?id=137
I see great examples of setting username/password and other input fields
with a form POST. However, if you have a checkbox that needs to be set
(checked) in an authentication form how do you do it?
Comment #1 on issue 137 by joe.gregorio: How do you "check" checkbox in
POST form?
http://code.google.com/p/httplib2/issues/detail?id=137
for a checkbox such as
<input type=checkbox name="topping" value="bacon"> Bacon </label></p>
send
topping=bacon
as part of the URL encoded POST body.