In webapp2 documentation there is no mention of setting the SameSite
attribute for a cookie, it seems to be built on the response handler from WebOB, I checked webOB doc page it clearly shows the 'SameSite' flag as an accepted cookie parameter
I tried to set it nonetheless in set cookie:
self.response.set_cookie(name, secure_cookie, path='/', secure=True,
httponly=True, samesite='lax', expires=expireDate)
But I received the below error:
TypeError: set_cookie() got an unexpected keyword argument 'samesite'
I know one can use self.response.headers.add_header('Set-Cookie', ...
but I was hoping I could use self.response.set_cookie
following the webapp2 documentation
Samesite
was introduced in webob 1.8 but The App Engine Standard Environment SDK ships with 1.1.1 and 1.2.3 as built-in libraries.You could try vendoring in a more recent
webob
to see if this overrides the built-in version.Once a version of
webob
that supportssamesite
is installed, asamesite
keyword argument can be passed toResponse.set_cookie
This sample app sets
samesite=strict
on the session cookie generated bywebapp2_extras.sessions
, assuming the underlying webob package supports it.The response's
set-cookie
header is