Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python CGI 프로그래밍에서 쿠키를 설정하는 방법은 무엇입니까?

<시간/>

쿠키 설정

브라우저에 쿠키를 보내는 것은 매우 쉽습니다. 이 쿠키는 HTTP 헤더와 함께 Content-type 필드로 전송됩니다. 사용자 ID와 비밀번호를 쿠키로 설정하고 싶다고 가정합니다. 쿠키 설정은 다음과 같이 이루어집니다 -

#!/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....

이 예에서 쿠키를 설정하는 방법을 이해해야 합니다. Set-Cookie HTTP 헤더를 사용하여 쿠키를 설정합니다.

Expires, Domain 및 Path와 같은 쿠키 속성을 설정하는 것은 선택 사항입니다. "Content-type:text/html\r\n\r\n.

매직 라인을 보내기 전에 쿠키가 설정되어 있음을 알 수 있습니다.