httplib を使用してサーバーに投稿しています。303 See Other が戻ってきます。リダイレクト メッセージが「303 See Other」であることを確認するにはどうすればよいですか。
ありがとう
conn1 = httplib.HTTPSConnection(url, 443, timeout=30)
headers = {"Content-type": "application/text",
"Accept": "2"}
conn1.set_debuglevel(1)
conn1.request("POST", '', body.encode('utf8'), headers)
response = conn1.getresponse()
print response.status, response.reason