LoginSignup
0
0

More than 3 years have passed since last update.

[Pythonでweb開発] cookieを保存させる時の注意点

Last updated at Posted at 2020-01-19

ブラウザにcookieを保存する場合、下記のコードで可能です。

print (
    'Set-Cookie:{0}={1}; '
    'path=/; '
    'expires=Fri, '
    '5-May-2027 00:00:00 GMT;'.format(key, value))

実行し、他のscript実行すると、保存できません。予想ではhttpの環境が変更されるためだと思われます。

redirectすると保存できますので、cookieを保存しすぐにredirectしましょう。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0