在 Python 中设置 Cookie
向浏览器发送 Cookie 非常容易。这些 Cookie 与 Content-type 字段之前的 HTTP 头一起发送。假设您希望将 UserID 和密码设置为 Cookie。设置 Cookie 的方法如下 −
示例
#!/usr/bin/python print "Set-Cookie:UserID = XYZ;\r\n" print "Set-Cookie:Password = XYZ123;\r\n" print "Set-Cookie:Expires = Tuesday, 31-Dec-2007 23:12:40 GMT";\r\n" print "Set-Cookie:Domain = www.tutorialspoint.com;\r\n" print "Set-Cookie:Path = /perl;\n" print "Content-type:text/html\r\n\r\n" ...........Rest of the HTML Content....
从这个示例中,您一定已经了解了如何设置 Cookie。我们使用 Set-Cookie HTTP 头来设置 Cookie。
可以设置 Cookie 的属性,如到期时间、域名和路径,但这是可选的。需要注意的是,Cookie是在发送特殊字符串之前设置的:"Content-type:text/html\r\n\r\n.
广告