Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะดึงคุกกี้ในการเขียนโปรแกรม Python CGI ได้อย่างไร


การดึงคุกกี้

การเรียกค้นชุดคุกกี้ทั้งหมดทำได้ง่ายมาก คุกกี้จะถูกเก็บไว้ในตัวแปรสภาพแวดล้อม CGI HTTP_COOKIE และจะมีรูปแบบดังต่อไปนี้ -

key1 = value1;key2 = value2;key3 = value3....

นี่คือตัวอย่างวิธีการดึงคุกกี้

#!/usr/bin/python
# Import modules for CGI handling
from os import environ
import cgi, cgitb
if environ.has_key('HTTP_COOKIE'):
   for cookie in map(strip, split(environ['HTTP_COOKIE'], ';')):
      (key, value ) = split(cookie, '=');
      if key == "UserID":
         user_id = value
      if key == "Password":
         password = value
print "User ID  = %s" % user_id
print "Password = %s" % password

สิ่งนี้ให้ผลลัพธ์ต่อไปนี้สำหรับคุกกี้ที่กำหนดโดยสคริปต์ด้านบน −

User ID = XYZ
Password = XYZ123