如何在python中使用cookie与其他平台

时间:2015-06-11 03:29:32

标签: python cookies

我的python应用程序允许用户在第三方平台上传文件。

他们需要向我的服务器询问平台的令牌以验证

看起来像:

enter image description here

当人们上传他们发布到平台的文件时

<form method="post" action="http://upload.qiniu.com/"
 enctype="multipart/form-data">
  <input name="key" type="hidden" value="<resource_key>">
  <input name="x:<custom_name>" type="hidden" value="<custom_value>">
  <input name="token" type="hidden" value="<upload_token>">
  <input name="file" type="file" />
  <input name="crc32" type="hidden" />
  <input name="accept" type="hidden" />
</form>

我想知道每次有人试图上传文件时是否可以请求令牌,或者只是让人们在登录时获取令牌,将令牌设置为cookie并使其生命周期与饼干&#39; S? 感谢。

1 个答案:

答案 0 :(得分:0)

通常的做法是将客户端访问令牌存储为返回用户的cookie。

contains以及This SO帖子也支持这个想法。