テスト リクエストで Cookie を送信する際に問題が発生しています。私はこのようなことを試しました:
# First request to log in, retrieve cookie from response
response = self.app_client.post('/users/login', query_string={ data.. )
cookie = response.headers['Set-Cookie'] # Contains: user_hash=3f305370487731289a7f9bd8d379a1c2; Domain=.flowdev.com; Path=/
# Second request that requires the cookie
response = self.app_client.get('/users/', headers={'Set-Cookie': cookie})
# Here i print out request.cookies.get('user_hash') inside the app, which contains None
それほど単純ではないと思いますが、ここで正しい方法でクッキーを作成する方法がわかりません。2 番目のリクエストを作成して、ヘッダーで Cookie を送信するにはどうすればよいですか?
ありがとう!